boost::gil::EqualityComparable
Concept of == and != comparability requirement.
Synopsis
Declared in <boost/gil/concepts/basic.hpp>
template<typename T>
struct EqualityComparable;
Description
auto concept EqualityComparable<typename T, typename U = T>
{
bool operator==(T x, T y);
bool operator!=(T x, T y) { return !(x==y); }
};
Member Functions
Name |
Created with MrDocs