Function operator^
Synopsis
#include <include/internal/catch_decomposer.h>
template <typename RhsT>
auto operator^(RhsT const &rhs) -> BinaryExpr< LhsT, RhsT const & > const
Description
No description yet.
Source
Lines 211-214 in include/internal/catch_decomposer.h.
template <typename RhsT>
auto operator ^ (RhsT const& rhs) -> BinaryExpr<LhsT, RhsT const&> const {
return { static_cast<bool>(m_lhs ^ rhs), m_lhs, "^", rhs };
}