operator < method

bool operator <(
  1. Currency other
)

Operator <

Implementation

bool operator <(Currency other) {
  return (this._value < other._value);
}