MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / MatchNotOf

Method MatchNotOf

unittests/catch.hpp:2320–2320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2318 struct MatchNotOf : MatcherBase<ArgT> {
2319
2320 MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {}
2321
2322 bool match( ArgT const& arg ) const override {
2323 return !m_underlyingMatcher.match( arg );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected