-
Notifications
You must be signed in to change notification settings - Fork 2
arithmeticOperatorsForType::Minus(struct)
Igor Zarzycki edited this page Jan 31, 2022
·
1 revision
Defined in "crap/functional.d/arithmeticoperatorsfortype.h".
Defined in "crap/functional".
template <class Type>
struct arithmeticOperatorsForType
{
/*...*/
template <Type ... Values>
using Minus = minusValue<Type, Values...>;
/*...*/
};
Creates minusValue
(see minusValue) acting on type Type
. Allows for minusValue
to act as value operator.
-
Values...
- values to operate on.
-
value
- holds result of operation. IfValues...
is single element, value holds that element. IfValues...
is empty whole operation is not defined.
-
value_type
- type of fieldvalue
. May not beType
but should be castable to this type.
-
constexpr operator value_type () const noexcept
- casts whole object to itsvalue_type
returningvalue
.
#include <crap/functional.d/arithmeticoperatorsfortype.h>
int main()
{
return 0;
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Minus<42u>{} == 42u, "42 should be 42");
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Minus<42u, 42u>{} == 0u, "42 - 42 should be 0");
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Minus<42u, 35u>{} == 7u, "42 - 35 should be 7");
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Minus<42u, 7u, 3u>{} == ((42u - 6u) - 3u),
"42 - 7 - 3 should be 32");
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Minus<84u, 42u, 7u, 3u, 2u>{} == ((((84u - 42u) - 7u) - 3u) - 2u),
" 84 - 42 - 7 - 3 - 2 should be 30");
return 0;
}