Method: NRSER::Types::ArrayOfType#initialize

Defined in:
lib/nrser/types/arrays.rb

#initialize(item_type, **options) ⇒ ArrayOfType

Instantiate a new ArrayOfType.



128
129
130
131
# File 'lib/nrser/types/arrays.rb', line 128

def initialize item_type, **options
  super **options
  @item_type = NRSER::Types.make item_type
end