Class: Mongoid::Matchers::Nin
- Inherits:
-
Default
- Object
- Default
- Mongoid::Matchers::Nin
- Defined in:
- lib/mongoid/matchers/nin.rb
Overview
Performs not in checking.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary (collapse)
-
- (true, false) matches?(value)
Return true if the attribute is not in the value list.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchers::Default
Instance Method Details
- (true, false) matches?(value)
Return true if the attribute is not in the value list.
16 17 18 |
# File 'lib/mongoid/matchers/nin.rb', line 16 def matches?(value) Array.wrap(@attribute).none? { |e| value.values.first.include?(e) } end |