Skip to main content
Module

x/binary_reader/binary_reader.ts>BinaryReader#readUint32

A Deno module and helper class that provides an easy way to read different types from a binary array buffer.
Latest
method BinaryReader.prototype.readUint32
import { BinaryReader } from "https://deno.land/x/binary_reader@v0.1.6/binary_reader.ts";

Reads an unsigned 32-bit integer (unsigned long) from the current position in the buffer.

Parameters

optional
littleEndian: boolean

Indicates if the 32-bit integer is stored in little- or big-endian. Reads big-endian if false or undefined.

Returns

number