|
| constexpr auto | plus |
| | Functional object which forwards the params to binary operator + and returns the result.
|
| |
| constexpr auto | minus |
| | Functional object which forwards the params to binary operator - and returns the result.
|
| |
| constexpr auto | multiplies |
| | Functional object which forwards the params to binary operator * and returns the result.
|
| |
| constexpr auto | divides |
| | Functional object which forwards the params to binary operator / and returns the result.
|
| |
| constexpr auto | modulus |
| | Functional object which forwards the params to binary operator % and returns the result.
|
| |
| constexpr auto | negate |
| | Functional object which forwards the param to unary operator - and returns the result.
|
| |