Method: Array#clone_to_f
- Defined in:
- lib/openc3/core_ext/array.rb
#clone_to_f ⇒ Array
Returns Cloned array after all elements called to_f.
44 45 46 47 48 49 50 |
# File 'lib/openc3/core_ext/array.rb', line 44 def clone_to_f new_array = self.class.new(0) self.each do |value| new_array << value.to_f end new_array end |