Module: Mongoid::Extensions::BigDecimal

Defined in:
build/mongoid-8.1/lib/mongoid/extensions/big_decimal.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__to_inc__Float

Convert the big decimal to an $inc-able value.

Examples:

Convert the big decimal.

bd.__to_inc__

Returns:

  • (Float)

    The big decimal as a float.



13
14
15
# File 'build/mongoid-8.1/lib/mongoid/extensions/big_decimal.rb', line 13

def __to_inc__
  to_f
end

#mongoizeString | BSON::Decimal128 | nil

Turn the object from the ruby type we deal with to a Mongo friendly type.

Examples:

Mongoize the object.

object.mongoize

Returns:

  • (String | BSON::Decimal128 | nil)

    The object or nil.



24
25
26
# File 'build/mongoid-8.1/lib/mongoid/extensions/big_decimal.rb', line 24

def mongoize
  ::BigDecimal.mongoize(self)
end

#numeric?true

Is the BigDecimal a number?

Examples:

Is the object a number?.

object.numeric?

Returns:

  • (true)

    Always true.



34
35
36
# File 'build/mongoid-8.1/lib/mongoid/extensions/big_decimal.rb', line 34

def numeric?
  true
end