Deno.PointerValue

UNSTABLE: New API, yet to be vetted.

Pointers are represented either with a PointerObject object or a null if the pointer is null.

type PointerValue<T = unknown> = null | PointerObject<T>;

§Type Parameters

§
T = unknown
[src]

§Type

§
null | PointerObject<T>
[src]