Class: Mongoid::Matchable::Exists
- Defined in:
- build/mongoid-6.1/lib/mongoid/matchable/exists.rb
Overview
Checks for existence.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#_matches?(value) ⇒ true, false
Return true if the attribute exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
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 exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
18 19 20 |
# File 'build/mongoid-6.1/lib/mongoid/matchable/exists.rb', line 18 def _matches?(value) @attribute.nil? != value.values.first end |