Interface BinaryOutput<T>

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

interface BinaryOutput<T> {
    val: T;
    len: number;
}

Type Parameters

  • T

Properties

Properties

val: T

decoded output value

len: number

bytelength occupied by the value when it was decoded

Generated using TypeDoc