Module: Mongoid::Criteria::Queryable::Extensions::NilClass

Defined in:
lib/mongoid/criteria/queryable/extensions/nil_class.rb

Overview

Adds query type-casting behavior to NilClass.

Instance Method Summary collapse

Instance Method Details

#__add__(object) ⇒ Object

Add this object to nil.

Examples:

Add the object to a nil value.

nil.__add__([ 1, 2, 3 ])

Parameters:

  • object (Object)

    The object to add.

Returns:

  • (Object)

    The provided object.



20
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 20

def __add__(object); object; end

#__evolve_time__nil Also known as: __evolve_date__

Evolve the nil into a date or time.

Examples:

Evolve the nil.

nil.__evolve_time__

Returns:

  • (nil)

    nil.



38
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 38

def __evolve_time__; self; end

#__expanded__(object) ⇒ Object

Add this object to nil.

Examples:

Add the object to a nil value.

nil.__expanded__([ 1, 2, 3 ])

Parameters:

  • object (Object)

    The object to expanded.

Returns:

  • (Object)

    The provided object.



30
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 30

def __expanded__(object); object; end

#__intersect__(object) ⇒ Object

Add this object to nil.

Examples:

Add the object to a nil value.

nil.__intersect__([ 1, 2, 3 ])

Parameters:

  • object (Object)

    The object to intersect.

Returns:

  • (Object)

    The provided object.



49
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 49

def __intersect__(object); object; end

#__override__(object) ⇒ Object

Add this object to nil.

Examples:

Add the object to a nil value.

nil.__override__([ 1, 2, 3 ])

Parameters:

  • object (Object)

    The object to override.

Returns:

  • (Object)

    The provided object.



59
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 59

def __override__(object); object; end

#__union__(object) ⇒ Object

Add this object to nil.

Examples:

Add the object to a nil value.

nil.__union__([ 1, 2, 3 ])

Parameters:

  • object (Object)

    The object to union.

Returns:

  • (Object)

    The provided object.



69
# File 'lib/mongoid/criteria/queryable/extensions/nil_class.rb', line 69

def __union__(object); object; end