Documentation
    Preparing search index...

    Function mapBufferChunks

    No description provided.

    • Split a typed array into a series of chunks and then map each chunk into a different value.

      Type Parameters

      • TBuffer extends TypedArray

        No description provided.

      • TResult

        No description provided.

      Parameters

      • buffer: TBuffer

        Typed array to split

      • chunkSize: number

        Size of each chunk

      • mapFn: (args: TBuffer) => TResult

        Map function to convert buffer view into another type

      Returns TResult[]