Module: MetaWhere::ConditionOperators
Instance Method Summary collapse
Instance Method Details
#&(other) ⇒ Object
7 8 9 |
# File 'lib/meta_where/condition_operators.rb', line 7 def &(other) And.new(self, other) end |
#-(other) ⇒ Object
11 12 13 |
# File 'lib/meta_where/condition_operators.rb', line 11 def -(other) And.new(self, Not.new(other)) end |