Currency.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. Currency opBinary(Currency rhs)
  2. Currency opBinary(T rhs)
    struct Currency(string _UNIT, long _BASE_UNIT = 1_000_000_000, long MAX_VALUE_IN_BASE_UNITS = 1_000_000_000)
    const pure
    opBinary
    (
    string OP
    T
    )
    (
    T rhs
    )
    if (
    isIntegral!T &&
    (["+", "-", "*", "%", "/"].canFind(OP))
    )

Meta