Class: Mongoid::Matchable::Ne
- Defined in:
- build/mongoid-6.1/lib/mongoid/matchable/ne.rb
Overview
Performs non-equivalency checks.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#_matches?(value) ⇒ true, false
Return true if the attribute and first value are not equal.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchable::Default
Instance Method Details
#_matches?(value) ⇒ true, false
Return true if the attribute and first value are not equal.
16 17 18 |
# File 'build/mongoid-6.1/lib/mongoid/matchable/ne.rb', line 16 def _matches?(value) !super(value.values.first) end |