class AMA::Entity::Mapper::Type::BuiltIn::ArrayType

Even though it is functionally unnecessary, end users are more likely to call `Mapper.map(input, Array)` rather than `Mapper.map(input, Enumerable)`. Because mapper has no right to make assumptions about type children, it would have to back off to standard hash-based normalization/denormalization, and that would cause end-user frustration

Constants

INSTANCE

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/ama-entity-mapper/type/builtin/array_type.rb, line 17
def initialize
  super
  self.type = Array
end