Branded numeric type for 64-bit floating point numbers. Represents values that can be stored in a Float64Array (standard JS number precision).
const toFloat64 = (x: number): Float64 => x as Float64;const scientificData = (measurements: Float64[]) => { // High-precision calculations}; Copy
const toFloat64 = (x: number): Float64 => x as Float64;const scientificData = (measurements: Float64[]) => { // High-precision calculations};
Branded numeric type for 64-bit floating point numbers. Represents values that can be stored in a Float64Array (standard JS number precision).