arithmeticOperatorsForType::Plus2(struct) - HaxyM/crap GitHub Wiki

crap :: arithmeticOperatorsForType :: Plus2

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.

Template parameters

  • Value1 - value to be summed with Value2.
  • Value2 - value to be summed with Value1.

Layout

Member constants

  • value - holds result of addition of Value1 with Value2.

Member types

  • value_type - type of field value. May not be Type but should be castable to this type.

Member functions

  • constexpr operator value_type () const noexcept - casts whole object to its value_type returning value.

Usage example

#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;
}

See also

⚠️ **GitHub.com Fallback** ⚠️