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

Instance Method Details

#__mongoize_time__Time | ActiveSupport::TimeWithZone

Converts the float into a time as the number of seconds since the epoch.

Examples:

Convert the float into a time.

1335532685.117847.__mongoize_time__

Returns:

  • (Time | ActiveSupport::TimeWithZone)

    The time.



16
17
18
# File 'lib/mongoid/extensions/float.rb', line 16

def __mongoize_time__
  ::Time.configured.at(self)
end

#numeric?true

Is the float a number?

Examples:

Is the object a number?.

object.numeric?

Returns:

  • (true)

    Always true.



26
27
28
# File 'lib/mongoid/extensions/float.rb', line 26

def numeric?
  true
end