Sha256: 42c7f0ed8d5d713ebc0a55e1fb453f75d8e2210d59f6bb1ad59c8c453e1b0f2c

Contents?: true

Size: 788 Bytes

Versions: 13

Compression:

Stored size: 788 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

module Mongoid
  module Matchable

    # Defines behavior for handling $and expressions in embedded documents.
    class And < Default

      # Does the supplied query match the attribute?
      #
      # @example Does this match?
      #   matcher._matches?([ { field => value } ])
      #
      # @param [ Array ] conditions The or expression.
      #
      # @return [ true, false ] True if matches, false if not.
      #
      # @since 2.3.0
      def _matches?(conditions)
        conditions.each do |condition|
          condition.keys.each do |k|
            key = k
            value = condition[k]
            return false unless document._matches?(key => value)
          end
        end
        true
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
mongoid-7.1.11 lib/mongoid/matchable/and.rb
mongoid-7.1.10 lib/mongoid/matchable/and.rb
mongoid-7.1.9 lib/mongoid/matchable/and.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/lib/mongoid/matchable/and.rb
mongoid-7.1.8 lib/mongoid/matchable/and.rb
mongoid-7.1.7 lib/mongoid/matchable/and.rb
mongoid-7.1.6 lib/mongoid/matchable/and.rb
mongoid-7.1.5 lib/mongoid/matchable/and.rb
mongoid-7.1.4 lib/mongoid/matchable/and.rb
mongoid-7.1.2 lib/mongoid/matchable/and.rb
mongoid-7.1.1 lib/mongoid/matchable/and.rb
mongoid-7.1.0 lib/mongoid/matchable/and.rb
mongoid-7.1.0.rc0 lib/mongoid/matchable/and.rb