# Functions
No description provided by the author
Combines two int32 values into a single int64 high occupies bits 32-63 low occupies bits 0-31.
Returns the highest 32 bits of an int64.
Returns the lowest 32 bits of an int64.
Returns x if x > y, otherwise returns y
NB: Only valid if math.MinInt64 <= x-y <= math.MaxInt64 In particular, always valid if both arguments are positive.
Returns x if x < y, otherwise returns y
NB: Only valid if math.MinInt64 <= x-y <= math.MaxInt64 In particular, always valid if both arguments are positive.
Returns the smallest power of two >= val.
Returns true if val is a power of two, otherwise returns false.
Returns 1 if x > y, 0 otherwise.
Returns 1 if x >= y, 0 otherwise.
Returns 1 if x < y, 0 otherwise.
Returns 1 if x <= y, 0 otherwise.
Returns 1 if x == 0 Returns 0 if x == 1 Undfined for all other inputs.
Returns 1 if x > y, 0 otherwise.
Returns 1 if x >= y, 0 otherwise.
Returns 1 if x < y, 0 otherwise.
Returns 1 if x <= y, 0 otherwise.
Returns 1 if x == 0 Returns 0 if x == 1 Undfined for all other inputs.