Timestamp.opBinary

add or subtract duration.

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

Examples

import core.time : dur;
immutable t = Timestamp(1000);
assert(t + dur!"seconds"(1) == Timestamp(1000 + dur!"seconds"(1).total!"hnsecs"));
assert(t - dur!"hnsecs"(100) == Timestamp(900));

Meta