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

Uint32

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

The type of 32-bit unsigned integer.

type Uint32 = number;

§Type

§
number
[src]

§Variables

Uint32.BYTES
Uint32.MAX_VALUE

The maximum value of 32-bit unsigned integer.

Uint32.MIN_VALUE

The minimum value of 32-bit unsigned integer.

Uint32.SIZE

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

§Functions

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

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

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