TickDuration.opOpAssign

The legal types of arithmetic for TickDuration using this operator overload are

TickDuration*long-->TickDuration
TickDuration*floating point-->TickDuration
  1. TickDuration opOpAssign(TickDuration rhs)
  2. void opOpAssign(T value)
    struct TickDuration
    void
    opOpAssign
    @safe pure nothrow @nogc
    (
    string op
    T
    )
    ()
    if (
    op == "*" &&
    (
    __traits(isIntegral, T) ||
    __traits(isFloating, T)
    )
    )
  3. void opOpAssign(T value)

Parameters

value
Type: T

The value to divide from this duration.

Suggestion Box / Bug Report