Skip to content

class half_comparison<L> testo

template <typename L>
struct half_comparison { … }

constructor half_comparison<L>(L &&)

half_comparison(L&& left)

Defined at test/comparison.hpp:195

function operator==(R &&)

template <typename R>
comparison<cmp_eq, L, R> operator==(R&& right)

Defined at test/comparison.hpp:198

function operator!=(R &&)

template <typename R>
comparison<cmp_ne, L, R> operator!=(R&& right)

Defined at test/comparison.hpp:204

function operator<(R &&)

template <typename R>
comparison<cmp_lt, L, R> operator<(R&& right)

Defined at test/comparison.hpp:210

function operator>(R &&)

template <typename R>
comparison<cmp_gt, L, R> operator>(R&& right)

Defined at test/comparison.hpp:216

function operator<=(R &&)

template <typename R>
comparison<cmp_le, L, R> operator<=(R&& right)

Defined at test/comparison.hpp:222

function operator>=(R &&)

template <typename R>
comparison<cmp_ge, L, R> operator>=(R&& right)

Defined at test/comparison.hpp:228

variable left

L left

Defined at test/comparison.hpp:233

Defined at test/comparison.hpp:193