module Mongoid::Matcher::Ne
In-memory matcher for $ne expression.
@see www.mongodb.com/docs/manual/reference/operator/query/ne/
@api private
Public Instance Methods
matches?(exists, value, condition)
click to toggle source
Returns whether a value satisfies an $ne expression.
@param [ true | false ] exists Whether the value exists. @param [ Object
] value The value to check. @param [ Object
] condition The $ne condition predicate.
@return [ true | false ] Whether the value matches.
@api private
# File lib/mongoid/matcher/ne.rb, line 21 def matches?(exists, value, condition) case condition when ::Regexp, BSON::Regexp::Raw raise Errors::InvalidQuery, "'$ne' operator does not allow Regexp arguments: #{Errors::InvalidQuery.truncate_expr(condition)}" end !EqImpl.matches?(exists, value, condition, '$ne') end