Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BufferUtils.Uint32

import { BufferUtils } from "https://raw.githubusercontent.com/i-xi-dev/buffer-utils.es/6.2.3/deps.ts"; 

const { Uint32 } = BufferUtils;

The type of 32-bit unsigned integer.

type Uint32 = number;

§Type

§
number
[src]

§Variables

BufferUtils.Uint32.BYTES
BufferUtils.Uint32.MAX_VALUE

The maximum value of 32-bit unsigned integer.

BufferUtils.Uint32.MIN_VALUE

The minimum value of 32-bit unsigned integer.

BufferUtils.Uint32.SIZE

The number of bits used to represent a 32-bit unsigned integer.

§Functions

BufferUtils.Uint32.bitwiseAnd
BufferUtils.Uint32.bitwiseOr
BufferUtils.Uint32.bitwiseXOr
BufferUtils.Uint32.isUint32

Determines whether the passed test is a 32-bit unsigned integer.

BufferUtils.Uint32.rotateLeft
BufferUtils.Uint32.saturateFromSafeInteger
BufferUtils.Uint32.toBytes
BufferUtils.Uint32.truncateFromSafeInteger