MLE PL/SQL Types(mle-js-plsqltypes)
    Preparing search index...

    Interface ISparseVectorConstructorArgs

    Interface for representing a SparseVectors construction arguments.

    Oracle 23.26.0

    interface ISparseVectorConstructorArgs {
        indices: number[] | Uint32Array;
        numDimensions: number;
        values: number[] | Uint8Array | Float32Array | Float64Array;
    }
    Index

    Properties

    indices: number[] | Uint32Array

    This property is a JavaScript array or a 32-bit unsigned integer (Uint32Array) TypedArray that specifies the indices (zero-based) of non-zero values in the vector.

    numDimensions: number

    This property is an integer that specifies the number of dimensions of the vector.

    values: number[] | Uint8Array | Float32Array | Float64Array

    This property is a JavaScript array or TypedArray that specifies the non- zero values stored in the vector.