Interface BinaryInput<ARGS>

the generic input that goes into a BinaryStep's forward function.
it is also the output of that BinaryStep's backward function.

interface BinaryInput<ARGS> {
    bin: Uint8Array;
    pos: number;
    args: ARGS;
}

Type Parameters

  • ARGS = any

Properties

Properties

bin: Uint8Array

the input binary data bytes

pos: number

the byte offset to begin the parsing from

args: ARGS

additional arguments needed for the parsing

Generated using TypeDoc