method

valid_float?

valid_float?()
private

No documentation available.

# File activesupport/lib/active_support/number_helper/number_converter.rb, line 177
        def valid_float?
          Float(number)
        rescue ArgumentError, TypeError
          false
        end