ts-type-forge
    Preparing search index...

    Type Alias Float64

    Float64: TSTypeForgeInternals_ExtendNumberBrand<
        TSTypeForgeInternals_BrandedNumberBaseType,
        "Float64",
    >

    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
    };