-
Notifications
You must be signed in to change notification settings - Fork 2
comparatorsForType::Less(struct)
Igor Zarzycki edited this page Jan 24, 2022
·
4 revisions
Defined in "crap/functional.d/comparatorsfortype.h".
Defined in "crap/functional".
template <class Type>
struct comparatorsForType
{
/*...*/
template <Type Value1, Type Value2>
using Less = lessValue<Type, Value1, Value2>;
/*...*/
};
Creates lessValue
(see lessValue) acting on type Type
. Allows for lessValue
to act as binary value operator.
-
Value1
- value to be compared less againstValue2
. -
Value2
- value with whichValue1
is compared.
-
value
- true ifValue1
compares less toValue2
. False if not.
-
value_type
- type of fieldvalue
. May not bebool
but should be castable to this type.
-
constexpr operator value_type () const noexcept
- casts whole object to itsvalue_type
returningvalue
.
#include <crap/functional.d/comparatorsfortype.h>
int main()
{
using test1 = typename crap :: comparatorsForType <unsigned int> :: template Less<42u, 101u>;
using test2 = typename crap :: comparatorsForType <unsigned int> :: template Less<101u, 42u>;
using test3 = typename crap :: comparatorsForType <unsigned int> :: template Less<42u, 42u>;
static_assert(test1 :: value, "test1: 42 should be less than 101.");
static_assert(!(test2 :: value), "test2: 101 should not be less than 42.");
static_assert(!(test3 :: value), "test3: 42 should not be less than 42.");
return 0;
}