class RSpec::Matchers::BuiltIn::Compound::SequentialEvaluator

For value expectations, we can evaluate the matchers sequentially.

def initialize(actual, *)

def initialize(actual, *)
  @actual = actual
end

def matcher_matches?(matcher)

def matcher_matches?(matcher)
  matcher.matches?(@actual)
end