#include <catch.hpp>
Public Member Functions | |
BinaryExpr (bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs) | |
template<typename T > | |
auto | operator&& (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator|| (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator== (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator!= (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator> (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator< (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator>= (T) const -> BinaryExpr< LhsT, RhsT const & > const |
template<typename T > | |
auto | operator<= (T) const -> BinaryExpr< LhsT, RhsT const & > const |
auto | isBinaryExpression () const -> bool |
auto | getResult () const -> bool |
Public Attributes | |
bool | m_isBinaryExpression |
bool | m_result |
Private Member Functions | |
void | streamReconstructedExpression (std::ostream &os) const override |
Private Attributes | |
LhsT | m_lhs |
StringRef | m_op |
RhsT | m_rhs |
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineoverrideprivatevirtual |
Implements Catch::ITransientExpression.
|
inherited |
Definition at line 2216 of file catch.hpp.
Referenced by Catch::ITransientExpression::isBinaryExpression().
|
private |
Definition at line 2225 of file catch.hpp.
Referenced by Catch::BinaryExpr< LhsT, RhsT >::streamReconstructedExpression().
|
private |
Definition at line 2226 of file catch.hpp.
Referenced by Catch::BinaryExpr< LhsT, RhsT >::streamReconstructedExpression().
|
inherited |
Definition at line 2217 of file catch.hpp.
Referenced by Catch::ITransientExpression::getResult().
|
private |
Definition at line 2227 of file catch.hpp.
Referenced by Catch::BinaryExpr< LhsT, RhsT >::streamReconstructedExpression().