EBTree64.Dual32Key

Dual32Key struct, allows the usage of two 32-bit integer values as a combined 64-bit key.

Members

Functions

opCmp
int opCmp(typeof(this) rhs)

Compares this instance with rhs.

opEquals
equals_t opEquals(Dual32Key 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
int hi;

hi: Carries the higher 32 bits of the key.

hi
uint hi;
Undocumented in source.
lo
uint lo;

lo: Carries the lower 32 bits of the key.

Meta