Method: CTioga2::MetaBuilder::Types::ArrayParameter#string_to_type_internal
- Defined in:
- lib/ctioga2/metabuilder/types/lists.rb
#string_to_type_internal(str) ⇒ Object
160 161 162 163 164 165 |
# File 'lib/ctioga2/metabuilder/types/lists.rb', line 160 def string_to_type_internal(str) ary = str.split(@separator) return ary.map do |a| @subtype.string_to_type(a) end end |