Ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e0ba6b95ab71a441357ed5484e33498)
Static Public Member Functions
ruby::backward::cxxanyargs::define_method::driver< T, F >::engine< N, U > Struct Template Reference

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. More...
 
static void define (VALUE klass, T mid, U func)
 Defines klass::mid as func, whose arity is N. More...
 
static void define (VALUE klass, T mid, notimpl_type func)
 Defines klass::mid as func, whose arity is N. More...
 

Detailed Description

template<typename T, void(*)(VALUE klass, T mid, type *func, int arity) F>
template<int N, typename U>
struct ruby::backward::cxxanyargs::define_method::driver< T, F >::engine< N, U >

Defines a method.

Template Parameters
NArity of the function.
UThe function in question

Definition at line 529 of file cxxanyargs.hpp.

Member Function Documentation

◆ define() [1/3]

template<typename T , void(*)(VALUE klass, T mid, type *func, int arity) F>
template<int N, typename U >
static void ruby::backward::cxxanyargs::define_method::driver< T, F >::engine< N, U >::define ( VALUE  klass,
mid,
notimpl_type  func 
)
inlinestatic

Defines klass::mid as func, whose arity is N.

Parameters
[in]klassWhere the method lives.
[in]midName of the method to define.
[in]funcFunction that implements klass::mid.

Definition at line 563 of file cxxanyargs.hpp.

◆ define() [2/3]

template<typename T , void(*)(VALUE klass, T mid, type *func, int arity) F>
template<int N, typename U >
static void ruby::backward::cxxanyargs::define_method::driver< T, F >::engine< N, U >::define ( VALUE  klass,
mid,
type  func 
)
inlinestatic

Defines klass::mid as func, whose arity is N.

Parameters
[in]klassWhere the method lives.
[in]midName of the method to define.
[in]funcFunction that implements klass::mid.
Deprecated:
Pass correctly typed function instead.

Definition at line 546 of file cxxanyargs.hpp.

◆ define() [3/3]

template<typename T , void(*)(VALUE klass, T mid, type *func, int arity) F>
template<int N, typename U >
static void ruby::backward::cxxanyargs::define_method::driver< T, F >::engine< N, U >::define ( VALUE  klass,
mid,
U  func 
)
inlinestatic

Defines klass::mid as func, whose arity is N.

Parameters
[in]klassWhere the method lives.
[in]midName of the method to define.
[in]funcFunction that implements klass::mid.

Definition at line 556 of file cxxanyargs.hpp.


The documentation for this struct was generated from the following file: