execute()
public

No documentation available.

# File activesupport/lib/active_support/number_helper/number_converter.rb, line 126
      def execute
        if !number
          nil
        elsif validate_float? && !valid_float?
          number
        else
          convert
        end
      end