Class: Dynamoid::Dumping::ArrayDumper
- Defined in:
- lib/dynamoid/dumping.rb
Overview
array -> array
Constant Summary collapse
- ALLOWED_TYPES =
%i[string integer number date datetime serialized].freeze
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dynamoid::Dumping::Base
Instance Method Details
#process(array) ⇒ Object
164 165 166 167 168 169 170 |
# File 'lib/dynamoid/dumping.rb', line 164 def process(array) if @options.key?(:of) process_typed_collection(array) else array end end |