Interface ReadArrayOptions

Options for the various read array methods of a data reader.

interface ReadArrayOptions {
    offset?: number;
    size?: number;
}

Hierarchy (View Summary)

Properties

Properties

offset?: number

Optional offset within the buffer to start writing to. Defaults to 0.

size?: number

Optional number of bytes to read. Defaults to buffer size minus offset.