Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.ns.d.ts>Deno.UnsafePointer

A modern runtime for JavaScript and TypeScript.
Latest
class Deno.UnsafePointer
import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { UnsafePointer } = Deno;

A collection of static functions for interacting with pointer objects.

Static Methods

create<T = unknown>(value: bigint): PointerValue<T>

Create a pointer from a numeric value. This one is really dangerous!

equals<T = unknown>(a: PointerValue<T>, b: PointerValue<T>): boolean

Returns true if the two pointers point to the same address.

of<T = unknown>(value: Deno.UnsafeCallback | BufferSource): PointerValue<T>

Return the direct memory pointer to the typed array in memory.

offset<T = unknown>(value: PointerObject, offset: number): PointerValue<T>

Return a new pointer offset from the original by offset bytes.

value(value: PointerValue): bigint

Get the numeric value of a pointer