Module: Mongoid::Extensions::Float

Defined in:
lib/mongoid/extensions/float.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__mongoize_time__Time

Convert the float into a time.

Examples:

Convert the float into a time.

1335532685.117847.__mongoize_time__

Returns:

  • (Time)

    The float as a time.

Since:

  • 3.0.0



14
15
16
# File 'lib/mongoid/extensions/float.rb', line 14

def __mongoize_time__
  ::Time.at(self)
end

#numeric?true

Is the float a number?

Examples:

Is the object a number?.

object.numeric?

Returns:

  • (true)

    Always true.

Since:

  • 3.0.0



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

def numeric?
  true
end