EBTree128.Key

Key struct, acts as a 'ucent'/'cent' surrogate, using two 64-bit integer values as a combined 128-bit key.

Members

Functions

opCmp
int opCmp(typeof(this) rhs)

Compares this instance with rhs.

opEquals
equals_t opEquals(Key rhs)
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

is_signed
enum is_signed;

false if 'uint' is the type of hi (below) or true if it is 'int'.

Variables

hi
long hi;

hi: Carries the higher 64 bits of the key.

hi
ulong hi;
Undocumented in source.
lo
ulong lo;

lo: Carries the lower 64 bits of the key.

Meta