Timestamp.roundDown

Round down time by unit duration.

struct Timestamp
const @nogc nothrow pure @safe scope
roundDown
(
Duration unit
)

Parameters

unit Duration

unit duration.

Return Value

Type: Timestamp

Rounded down timestamp.

Examples

import core.time : hnsecs, dur;
immutable t = Timestamp(1234567890);
assert(t.roundDown(dur!"seconds"(1)) == Timestamp(1230000000));
assert(t.roundDown(dur!"msecs"(1)) == Timestamp(1234560000));

Meta