Timestamp.opCmp

Compare two timestmaps.

struct Timestamp
const @nogc nothrow pure @safe scope
int
opCmp
()
(
auto scope ref const(Timestamp) rhs
)

Parameters

rhs const(Timestamp)

other hand side.

Return Value

Type: int

compare result.

Examples

immutable t1 = Timestamp(12345678912340);
immutable t2 = Timestamp(12345678912341);
assert(t1 < t2);
assert(t1 <= t2);
assert(t2 > t1);
assert(t2 >= t1);

assert(!(t1 < t1));
assert(t1 <= t1);
assert(!(t1 > t1));
assert(t1 >= t1);

Meta