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

Deno.PointerValue

Pointer type depends on the architecture and actual pointer value.

On a 32 bit system all pointer values are plain numbers. On a 64 bit system pointer values are represented as numbers if the value is below Number.MAX_SAFE_INTEGER.

type PointerValue = number | bigint;

§Type

§
number | bigint
[src]