Method: Necromancer::ArrayConverters::StringToNumericArrayConverter#call

Defined in:
lib/necromancer/converters/array.rb

#call(string, strict: config.strict) ⇒ Object

Convert string value to array with numeric values

Examples:

converter.call("1,2.0,3") # => [1, 2.0, 3]


85
86
87
88
89
90
# File 'lib/necromancer/converters/array.rb', line 85

def call(string, strict: config.strict)
  array_converter = StringToArrayConverter.new(:string, :array)
  array = array_converter.(string, strict: strict)
  num_converter = ArrayToNumericArrayConverter.new(:array, :numeric)
  num_converter.(array, strict: strict)
end