Struct Decomposer
Synopsis
#include <include/internal/catch_decomposer.h>
struct Decomposer
Description
No description yet.
Methods
operator<= overload |
Source
Lines 242-251 in include/internal/catch_decomposer.h.
struct Decomposer {
template<typename T>
auto operator <= ( T const& lhs ) -> ExprLhs<T const&> {
return ExprLhs<T const&>{ lhs };
}
auto operator <=( bool value ) -> ExprLhs<bool> {
return ExprLhs<bool>{ value };
}
};