Timestamp.opOpAssign

add or subtract duration.

struct Timestamp
@nogc nothrow @safe scope
void
opOpAssign
(
string op
)
(
scope auto ref const(Duration) rhs
)
if (
op == "-" ||
op == "+"
)

Examples

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

t = Timestamp(1000);
t -= dur!"hnsecs"(100);
assert(t == Timestamp(900));

Meta