Module: Mongoid::Criteria::Queryable::Mergeable
- Included in:
- Mongoid::Criteria::Queryable
- Defined in:
- lib/mongoid/criteria/queryable/mergeable.rb
Overview
Contains behaviour for merging existing selection with new selection.
Instance Attribute Summary collapse
-
#strategy ⇒ Object
Returns the value of attribute strategy.
- #strategy The name of the current strategy.(Thenameofthecurrentstrategy.) ⇒ Object
Instance Method Summary collapse
-
#intersect ⇒ Mergeable
Instruct the next mergeable call to use intersection.
-
#override ⇒ Mergeable
Instruct the next mergeable call to use override.
-
#reset_strategies! ⇒ nil
Clear the current strategy and negating flag, used after cloning.
-
#union ⇒ Mergeable
Instruct the next mergeable call to use union.
Instance Attribute Details
#strategy ⇒ Object
Returns the value of attribute strategy.
10 11 12 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 10 def strategy @strategy end |
#strategy The name of the current strategy.(Thenameofthecurrentstrategy.) ⇒ Object
10 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 10 attr_accessor :strategy |
Instance Method Details
#intersect ⇒ Mergeable
Instruct the next mergeable call to use intersection.
20 21 22 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 20 def intersect use(:__intersect__) end |
#override ⇒ Mergeable
Instruct the next mergeable call to use override.
32 33 34 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 32 def override use(:__override__) end |
#reset_strategies! ⇒ nil
Clear the current strategy and negating flag, used after cloning.
56 57 58 59 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 56 def reset_strategies! self.strategy = nil self.negating = nil end |
#union ⇒ Mergeable
Instruct the next mergeable call to use union.
44 45 46 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 44 def union use(:__union__) end |