NumOperators<T extends num> extension

Extension to define operators for Valuable

on

Operators

operator %(Valuable<num> other) Valuable<num>
Euclidean modulo operator.
operator *(Valuable<num> other) Valuable<num>
Multiplication operator.
operator +(Valuable<num> other) Valuable<num>
Addition operator.
operator -(Valuable<num> other) Valuable<num>
Subtraction operator.
operator /(Valuable<num> other) Valuable<double>
Division operator.
operator unary-() Valuable<num>
Negate operator.
operator ~/(Valuable<num> other) Valuable<int>
Truncating division operator.