EBTree32.Dual16Key

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

class EBTree32(bool signed = false)
struct Dual16Key {}

Members

Manifest constants

is_signed
enum is_signed;

false if 'ushort' is the type of hi (below) or true if it is 'short'.

Variables

hi
ushort hi;
Undocumented in source.
hi
short hi;

hi: Carries the higher 16 bits of the key.

lo
ushort lo;

lo: Carries the lower 16 bits of the key.

Meta