Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace BinaryReader

Index

Functions

  • Returns a BinaryReader that contains the read Int32 value at the given reader's offset. The returned reader will have its offset adjusted so it can be passed to the next helper.

    Parameters

    Returns BinaryReaderValue<number>

  • readInt8Array(length: number, reader: BinaryReader): BinaryReaderValue<Int8Array>
  • Returns a BinaryReader that contains the a signed Int8Array start from the given reader's offset to the given length. The returned reader will have its offset adjusted so it can be passed to the next helper.

    Parameters

    Returns BinaryReaderValue<Int8Array>

  • readUtf8String(length: number, reader: BinaryReader): BinaryReaderValue<string>
  • Returns a BinaryReader that contains the read UTF-8 string at the given reader's offset. The returned reader will have its offset adjusted so it can be passed to the next helper.

    Parameters

    Returns BinaryReaderValue<string>

  • sliceInt8Array(length: number, reader: BinaryReader): BinaryReaderValue<Int8Array>
  • Returns a BinaryReader that contains the a signed Int8Array sliced from the start of the reader's offset to offset + length. The new reader value has an offset of zero, so downstream operations will not bee effected by the previous offset

    Parameters

    Returns BinaryReaderValue<Int8Array>