Method: CommonLib::Array#numericize

Defined in:
lib/common_lib/ruby/array.rb

#numericizeObject Also known as: digitize

Convert all items in the array to_f



76
77
78
# File 'lib/common_lib/ruby/array.rb', line 76

def numericize
  collect(&:to_f)
end