Function makeTable

  • Creates a new Table from an object of typed arrays.

    Type Parameters

    • I extends Record<string | number | symbol, TypedArray>

    Parameters

    • input: I

      Input an object of typed arrays.

    Returns Table<{
        [P in keyof I]: TypedArrayDataType<I[P]>
    }>

    A new Table.

    Example

    const table = makeTable({
    a: new Int8Array([1, 2, 3]),
    })

Generated using TypeDoc