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

Deno.UnsafeFnPointer

UNSTABLE: Unsafe and new API, beware!

An unsafe pointer to a function, for calling functions that are not present as symbols.

class UnsafeFnPointer<Fn extends ForeignFunction> {
constructor(pointer: bigint, definition: Fn);
call: FromForeignFunction<Fn>;
definition: Fn;
pointer: bigint;
}

§Type Parameters

§Constructors

§
new UnsafeFnPointer(pointer: bigint, definition: Fn)
[src]

§Properties

§
call: FromForeignFunction<Fn>
[src]
§
definition: Fn
[src]
§
pointer: bigint
[src]