Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyamf/model.rb

Instance Method Summary collapse

Instance Method Details

#to_amf(options = nil) ⇒ Object

Returns an array of RubyAMF::IntermediateObject objects created from calling to_amf on each object in the array with the given options.



212
213
214
# File 'lib/rubyamf/model.rb', line 212

def to_amf options=nil
  self.map {|o| o.to_amf(options)}
end