-
Notifications
You must be signed in to change notification settings - Fork 2
arithmeticOperatorsForType::Plus2(struct)
Igor Zarzycki edited this page Feb 15, 2022
·
1 revision
Defined in "crap/functional.d/arithmeticoperatorsfortype.h".
Defined in "crap/functional".
template <class Type>
struct arithmeticOperatorsForType
{
/*...*/
template <Type Value1, Type Value2>
using Plus2 = plusValue<Type, Value1, Value2>;
/*...*/
};
Creates plusValue
(see plusValue) acting on type Type
. Allows for plusValue
to act as binary value operator.
-
Value1
- value to be summed withValue2
. -
Value2
- value to be summed withValue1
.
-
value
- holds result of addition ofValue1
withValue2
.
-
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()
{
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Plus2<42u, 0u>{} == 42u, "42 + 0 should be 42");
static_assert(crap :: arithmeticOperatorsForType <unsigned int> :: template Plus2<20u, 22u>{} == 42u, "20 + 22 should be 42");
return 0;
}