class CFPropertyList::CFArray
This class contains an array of values
def initialize(val=[])
def initialize(val=[]) @value = val end
def to_binary(bplist)
def to_binary(bplist) return bplist.array_to_binary(self) end
def to_xml
def to_xml n = LibXML::XML::Node.new('array') @value.each do |v| n << v.to_xml end return n end