LuaFunction.dump

Dump this function as a binary chunk of Lua bytecode to the specified writer delegate. Multiple chunks may be produced to dump a single function.

struct LuaFunction
bool
dump
(
scope bool delegate
(
in void[]
)
writer
)

Parameters

writer bool delegate
(
in void[]
)

delegate to forward writing calls to

If the delegate returns false for any of the chunks, the dump process ends, and the writer won't be called again.

Meta