Module: Mongoid::Criteria::Queryable::Mergeable
- Included in:
- Mongoid::Criteria::Queryable
- Defined in:
- lib/mongoid/criteria/queryable/mergeable.rb
Overview
Contains behavior 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! ⇒ Criteria
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.
12 13 14 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 12 def strategy @strategy end |
#strategy The name of the current strategy.(Thenameofthecurrentstrategy.) ⇒ Object
12 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 12 attr_accessor :strategy |
Instance Method Details
#intersect ⇒ Mergeable
Instruct the next mergeable call to use intersection.
22 23 24 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 22 def intersect use(:__intersect__) end |
#override ⇒ Mergeable
Instruct the next mergeable call to use override.
34 35 36 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 34 def override use(:__override__) end |
#reset_strategies! ⇒ Criteria
Clear the current strategy and negating flag, used after cloning.
58 59 60 61 62 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 58 def reset_strategies! self.strategy = nil self.negating = nil self end |
#union ⇒ Mergeable
Instruct the next mergeable call to use union.
46 47 48 |
# File 'lib/mongoid/criteria/queryable/mergeable.rb', line 46 def union use(:__union__) end |