Parameters
Returns
function - The wrapped Lua closure function.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
newlclosure(func: function): function
| Parameter | Type | Description |
|---|---|---|
func | function | The C closure function to wrap. |
function - The wrapped Lua closure function.
local l = newlclosure(print)
print(islclosure(l)) -- true
local myPrint = newlclosure(getgenv().print)