Module: Mongoid::Criteria::Queryable::Extensions::Symbol

Defined in:
build/mongoid-8.1/lib/mongoid/criteria/queryable/extensions/symbol.rb

Overview

This module contains additional symbol behavior.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__expr_part__(value, negating = false) ⇒ Hash

Get the symbol as a specification.

Examples:

Get the symbol as a criteria.

:field.__expr_part__(value)

Parameters:

  • value (Object)

    The value of the criteria.

  • negating (true | false) (defaults to: false)

    If the selection should be negated.

Returns:

  • (Hash)

    The selection.



20
21
22
# File 'build/mongoid-8.1/lib/mongoid/criteria/queryable/extensions/symbol.rb', line 20

def __expr_part__(value, negating = false)
  ::String.__expr_part__(self, value, negating)
end