MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator &&

Method operator &&

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

Source from the content-addressed store, hash-verified

2331
2332 template<typename T>
2333 MatchAllOf<T> MatcherBase<T>::operator && ( MatcherBase const& other ) const {
2334 return MatchAllOf<T>() && *this && other;
2335 }
2336 template<typename T>
2337 MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const {
2338 return MatchAnyOf<T>() || *this || other;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected