tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
etl::weakly_equality_comparable_with Concept Reference

#include <etl/concepts.hpp>

Concept definition

template<typename T, typename U>
concept etl::weakly_equality_comparable_with = requires(remove_reference_t<T> const& t, remove_reference_t<U> const& u) {
{ t == u } -> boolean_testable;
{ t != u } -> boolean_testable;
{ u == t } -> boolean_testable;
{ u != t } -> boolean_testable;
}
Definition boolean_testable.hpp:21
Definition weakly_equality_comparable_with.hpp:19
The class template bitset represents a fixed-size sequence of Bits bits. Bitsets can be manipulated b...
Definition bitset.hpp:23

Detailed Description

Note
Non-standard extension