Module: Mongoid::Extensions::Float
- Defined in:
- lib/mongoid/extensions/float.rb
Overview
Adds type-casting behavior to Float class.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Converts the float into a time as the number of seconds since the epoch.
-
#numeric? ⇒ true
Is the float a number?.
Instance Method Details
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Converts the float into a time as the number of seconds since the epoch.
16 17 18 |
# File 'lib/mongoid/extensions/float.rb', line 16 def __mongoize_time__ ::Time.zone.at(self) end |
#numeric? ⇒ true
Is the float a number?
26 27 28 |
# File 'lib/mongoid/extensions/float.rb', line 26 def numeric? true end |