eb128i_cmp_264

Compares a and b in a qsort callback/D opCmp fashion. a and b are int128_t values composed from alo and ahi or blo and bhi, respectively.

extern (C)
int
eb128i_cmp_264
(
ulong alo
,
long ahi
,
ulong blo
,
long bhi
)

Parameters

alo ulong

value of the lower 64 bits of a

ahi long

value of the higher 64 bits of a

blo ulong

value of the lower 64 bits of b

ahi long

value of the higher 64 bits of b

Return Value

Type: int

a value less than 0 if a < b, a value greater than 0 if a > b or 0 if a == b.

Meta