class AWS::Core::Data::List
def initialize array
-
array
(Array
) --
def initialize array @data = array end
def inject *args, &block
- Private: -
def inject *args, &block @data.inject(*args) do |obj,value| yield(Data.cast(obj),Data.cast(value)) end end
def inspect
-
(String)
- Returns the inspection string for the
def inspect @data.inspect end
def kind_of? klass
- Private: -
def kind_of? klass if klass == Array true else super end end
def to_ary
-
(Array)
- Returns the contents of this Data::List as
def to_ary @data end