Time.opBinary

Overload of binary * and / operators to scale a time value.

  1. Time opBinary(Time rhs)
  2. Time opBinary(E num)
    struct Time
    const
    opBinary
    (
    string op
    E
    )
    (
    E num
    )
    if (
    isNumeric!(E) &&
    (
    (op == "*") ||
    (op == "/")
    )
    )

Meta