Class: Mongoid::Matchable::In
- Defined in:
- lib/mongoid/matchable/in.rb
Overview
Performs matching for any value in an array.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#matches?(value) ⇒ true, false
Return true if the attribute is in the values.
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 is in the values.
16 17 18 19 20 21 |
# File 'lib/mongoid/matchable/in.rb', line 16 def matches?(value) attribute_array = Array.wrap(@attribute) value.values.first.any? do |e| attribute_array.any? { |_attribute| e === _attribute } end end |