Class: Mongoid::Matchable::All
- Defined in:
- build/mongoid-6.1/lib/mongoid/matchable/all.rb
Overview
Checks that all values match.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#_matches?(value) ⇒ true, false
Return true if the attribute and first value in the hash are 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 in the hash are equal.
16 17 18 19 20 21 22 23 24 |
# File 'build/mongoid-6.1/lib/mongoid/matchable/all.rb', line 16 def _matches?(value) first = first(value) return false if first.is_a?(Array) && first.empty? attribute_array = Array.wrap(@attribute) first.all? do |e| attribute_array.any? { |_attribute| e === _attribute } end end |