Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/rubyamf/model.rb
Instance Method Summary collapse
-
#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.
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 =nil self.map {|o| o.to_amf()} end |