Ruby 3.2.5p208 (2024-07-26 revision 31d0f1a2e7dbfb60731d1f05b868e1d578cda493)
|
Defines a method. More...
#include <cxxanyargs.hpp>
Static Public Member Functions | |
static void | define (VALUE klass, T mid, type func) |
Defines klass#mid as func, whose arity is N. | |
static void | define (VALUE klass, T mid, U func) |
Defines klass#mid as func, whose arity is N. | |
static void | define (VALUE klass, T mid, notimpl_type func) |
Defines klass#mid as func, whose arity is N. | |
Defines a method.
N | Arity of the function. |
U | The function in question |
Definition at line 529 of file cxxanyargs.hpp.
|
inlinestatic |
Defines klass#mid as func, whose arity is N.
[in] | klass | Where the method lives. |
[in] | mid | Name of the method to define. |
[in] | func | Function that implements klass#mid. |
Definition at line 563 of file cxxanyargs.hpp.
|
inlinestatic |
Defines klass#mid as func, whose arity is N.
[in] | klass | Where the method lives. |
[in] | mid | Name of the method to define. |
[in] | func | Function that implements klass#mid. |
Definition at line 546 of file cxxanyargs.hpp.
|
inlinestatic |
Defines klass#mid as func, whose arity is N.
[in] | klass | Where the method lives. |
[in] | mid | Name of the method to define. |
[in] | func | Function that implements klass#mid. |
Definition at line 556 of file cxxanyargs.hpp.