Class: Array
Overview
Numeric Additions.
Instance Method Summary collapse
-
#to_num ⇒ Numeric?
Tries to convert the joined result of this Array into a number.
Instance Method Details
#to_num ⇒ Numeric?
Tries to convert the joined result of this Array into a number. If this fails, nil is returned.
71 72 73 |
# File 'lib/a_types/core_ext/numeric.rb', line 71 def to_num join.to_num end |