Timestamp.opBinary

calculate duration.

  1. Duration opBinary(const(Timestamp) rhs)
    struct Timestamp
    const @nogc nothrow @safe scope
    Duration
    opBinary
    (
    string op
    )
    (
    scope auto ref const(Timestamp) rhs
    )
    if (
    op == "-"
    )
  2. Timestamp opBinary(const(Duration) rhs)

Examples

immutable t1 = Timestamp(1000);
immutable t2 = Timestamp(500);
assert(t1 - t2 == hnsecs(500));
assert(t2 - t1 == hnsecs(-500));

Meta