Timestamp.opEquals

Compare two timestmaps.

struct Timestamp
const @nogc nothrow pure @safe scope
bool
opEquals
()
(
auto scope ref const(Timestamp) rhs
)

Parameters

rhs const(Timestamp)

other hand side.

Return Value

Type: bool

compare result.

Examples

immutable t1 = Timestamp(12345678912340);
immutable t2 = Timestamp(12345678912341);
assert(t1 == t1);
assert(t2 == t2);
assert(t1 != t2);
assert(t2 != t1);

Meta