class RSpec::Matchers::BuiltIn::OperatorMatcher

def get(klass, operator)

Other tags:
    Private: -
def get(klass, operator)
  klass.ancestors.each do |ancestor|
    matcher = registry[ancestor] && registry[ancestor][operator]
    return matcher if matcher
  end
  nil
end