Fast Methods for Cosmological Simulations
FastSim serves as a tool for quick N-body simulations in modified gravity.
Catch::Matchers::Impl::MatcherBase< T > Struct Template Reference

#include <catch.hpp>

Inheritance diagram for Catch::Matchers::Impl::MatcherBase< T >:
Collaboration diagram for Catch::Matchers::Impl::MatcherBase< T >:

Public Member Functions

MatchAllOf< T > operator&& (MatcherBase const &other) const
 
MatchAnyOf< T > operator|| (MatcherBase const &other) const
 
MatchNotOf< T > operator! () const
 
- Public Member Functions inherited from Catch::Matchers::Impl::MatcherUntypedBase
 MatcherUntypedBase ()=default
 
 MatcherUntypedBase (MatcherUntypedBase const &)=default
 
MatcherUntypedBaseoperator= (MatcherUntypedBase const &)=delete
 
std::string toString () const
 
- Public Member Functions inherited from Catch::Matchers::Impl::MatcherMethod< T >
virtual bool match (Tconst &arg) const =0
 

Additional Inherited Members

- Protected Member Functions inherited from Catch::Matchers::Impl::MatcherUntypedBase
virtual ~MatcherUntypedBase ()
 
virtual std::string describe () const =0
 
- Protected Attributes inherited from Catch::Matchers::Impl::MatcherUntypedBase
std::string m_cachedToString
 

Detailed Description

template<typename T>
struct Catch::Matchers::Impl::MatcherBase< T >

Definition at line 2466 of file catch.hpp.

Member Function Documentation

template<typename T >
MatchNotOf< T > Catch::Matchers::Impl::MatcherBase< T >::operator! ( ) const

Definition at line 2563 of file catch.hpp.

2563  {
2564  return MatchNotOf<T>( *this );
2565  }
template<typename T >
MatchAllOf< T > Catch::Matchers::Impl::MatcherBase< T >::operator&& ( MatcherBase< T > const &  other) const

Definition at line 2555 of file catch.hpp.

2555  {
2556  return MatchAllOf<T>() && *this && other;
2557  }
template<typename T >
MatchAnyOf< T > Catch::Matchers::Impl::MatcherBase< T >::operator|| ( MatcherBase< T > const &  other) const

Definition at line 2559 of file catch.hpp.

2559  {
2560  return MatchAnyOf<T>() || *this || other;
2561  }

The documentation for this struct was generated from the following file: