export const floatToUintBits64 = (x: number): [number, number] => (
    (F64[0] = x), IS_LE ? [U32[1], U32[0]] : [U32[0], U32[1]]
);