TypeTensor - v0.1.0
    Preparing search index...

    Variable DTYPESConst

    DTYPES: {
        bool: RuntimeDType<Bool>;
        float32: RuntimeDType<Float32>;
        float64: RuntimeDType<Float64>;
        int16: RuntimeDType<Int16>;
        int32: RuntimeDType<Int32>;
        int64: RuntimeDType<Int64>;
        int8: RuntimeDType<Int8>;
        uint16: RuntimeDType<Uint16>;
        uint32: RuntimeDType<Uint32>;
        uint64: RuntimeDType<Uint64>;
        uint8: RuntimeDType<Uint8>;
    } = ...

    Precomputed DType instances for efficient lookup Uses singleton pattern to ensure consistent instances

    NOTE: Order matters for getTypedArrayDType when multiple dtypes use the same TypedArray constructor. uint8 comes before bool so that raw Uint8Array instances default to uint8 (the more common interpretation).

    Type declaration