makeJanetCFunc

The same, but requires a delegate or function pointer be put in as an argument. This is due to many class methods requiring context pointers. This is mostly only useful for class registering.

  1. JanetCFunction makeJanetCFunc(T delegate(Args) argDg)
    template makeJanetCFunc(alias func, T, Args...)
    makeJanetCFunc
    (
    T delegate
    (
    Args
    )
    argDg
    )
  2. JanetCFunction makeJanetCFunc(T function(Args) argFp)
  3. template makeJanetCFunc(alias func)

Members

Functions

makeJanetCFunc
JanetCFunction makeJanetCFunc(T delegate(Args) argDg)
Undocumented in source. Be warned that the author may not have intended to support it.
makeJanetCFunc
JanetCFunction makeJanetCFunc(T function(Args) argFp)
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

ourJanetFunc
Janet ourJanetFunc(int argc, Janet* argv)
Undocumented in source. Be warned that the author may not have intended to support it.

Static variables

dg
T delegate(Args) dg;
Undocumented in source.
fp
T function(Args) fp;
Undocumented in source.

Meta