class CFPropertyList::CFArray

This class contains an array of values

def initialize(val=[])

create a new array CFType
def initialize(val=[])
  @value = val
end

def to_binary(bplist)

convert to binary
def to_binary(bplist)
  bplist.array_to_binary(self)
end

def to_xml(parser)

convert to XML
def to_xml(parser)
  n = parser.new_node('array')
  @value.each do |v|
    n = parser.append_node(n, v.to_xml(parser))
  end
  n
end