FLValue_IsUnsigned

Function FLValue_IsUnsigned 

Source
pub unsafe extern "C" fn FLValue_IsUnsigned(arg1: FLValue) -> bool
Expand description

Returns true if the value is non-NULL and represents an integer >= 2^63. Such a value can’t be represented in C as an int64_t, only a uint64_t, so you should access it by calling FLValueAsUnsigned, not FLValueAsInt, which would return an incorrect (negative) value.