//#region src/half.d.ts /** * Will this number fit into a float51 without losing precision? * * @param n Number to check. * @returns True if this is an eligible f16. */ declare function isF16(n: number): boolean; //#endregion export { isF16 };