Rosetta
|
Binder self-test file. Bindings for functions. More...
#include <functional>
#include <memory>
#include <string>
Classes | |
class | A< T > |
Typedefs | |
using | function_type = void() |
using | function_pointer = void(*)() |
using | function_reference = void(&)() |
Functions | |
void | foo (bool) |
void | foo (int) |
void | foo (long) |
void | foo (float) |
void | foo (double) |
void | foo (A) |
void | foo (std::shared_ptr< A >) |
void | foo_r (bool &) |
void | foo_r (int &) |
void | foo_r (long &) |
void | foo_r (float &) |
void | foo_r (double &) |
void | foo_r (A &) |
void | foo_r (std::shared_ptr< A > &) |
void | foo_r_not_binded (std::pair< int, int > &) |
void | foo_r_not_binded (std::tuple< int, int > &) |
void | foo_cr (bool const &) |
void | foo_cr (int const &) |
void | foo_cr (long const &) |
void | foo_cr (float const &) |
void | foo_cr (double const &) |
void | foo_cr (A const &) |
void | foo_cr (std::shared_ptr< A > const &) |
void | foo_cr (std::shared_ptr< A const > const &) |
void | foo_cr (std::pair< int, int > const &) |
void | foo_cr (std::tuple< int, int > const &) |
void | foo_p (bool *) |
void | foo_p (int *) |
void | foo_p (long *) |
void | foo_p (float *) |
void | foo_p (double *) |
void | foo_p (A *) |
void | foo_p (std::shared_ptr< A > *) |
void | foo_p_not_binded (std::pair< int, int > *) |
void | foo_p_not_binded (std::tuple< int, int > *) |
void | foo_cp_not_binded (std::pair< int, int > const *) |
void | foo_cp_not_binded (std::tuple< int, int > const *) |
void | foo_f1 (std::function< bool(std::string const &) > const &f) |
void | foo_f2 (std::function< function_pointer(void) > const &f) |
void | foo_f3 (std::function< bool(function_pointer *, int(&)[1]) > const &f) |
void | foo_f4_not_binded (function_pointer) |
void | foo_f5 (function_reference) |
void | foo_f7 (function_reference &) |
void | foo_f8 (function_type &f) |
void | foo_f9 (function_type *f) |
Binder self-test file. Bindings for functions.
using function_pointer = void (*)() |
using function_reference = void (&)() |
using function_type = void() |
void foo | ( | A | ) |
void foo | ( | bool | ) |
void foo | ( | double | ) |
void foo | ( | float | ) |
void foo | ( | int | ) |
void foo | ( | long | ) |
void foo | ( | std::shared_ptr< A > | ) |
void foo_cp_not_binded | ( | std::pair< int, int > const * | ) |
void foo_cp_not_binded | ( | std::tuple< int, int > const * | ) |
void foo_cr | ( | A const & | ) |
void foo_cr | ( | bool const & | ) |
Referenced by bind_T02_function().
void foo_cr | ( | double const & | ) |
void foo_cr | ( | float const & | ) |
void foo_cr | ( | int const & | ) |
void foo_cr | ( | long const & | ) |
void foo_cr | ( | std::pair< int, int > const & | ) |
void foo_cr | ( | std::shared_ptr< A > const & | ) |
void foo_cr | ( | std::shared_ptr< A const > const & | ) |
void foo_cr | ( | std::tuple< int, int > const & | ) |
void foo_f1 | ( | std::function< bool(std::string const &) > const & | f | ) |
Referenced by bind_T02_function(), and bind_T05_default().
void foo_f2 | ( | std::function< function_pointer(void) > const & | f | ) |
Referenced by bind_T02_function().
void foo_f3 | ( | std::function< bool(function_pointer *, int(&)[1]) > const & | f | ) |
Referenced by bind_T02_function().
void foo_f4_not_binded | ( | function_pointer | ) |
void foo_f5 | ( | function_reference | ) |
Referenced by bind_T02_function().
void foo_f7 | ( | function_reference & | ) |
Referenced by bind_T02_function().
void foo_f8 | ( | function_type & | f | ) |
Referenced by bind_T02_function().
void foo_f9 | ( | function_type * | f | ) |
void foo_p | ( | A * | ) |
void foo_p | ( | bool * | ) |
Referenced by bind_T02_function().
void foo_p | ( | double * | ) |
void foo_p | ( | float * | ) |
void foo_p | ( | int * | ) |
void foo_p | ( | long * | ) |
void foo_p | ( | std::shared_ptr< A > * | ) |
void foo_p_not_binded | ( | std::pair< int, int > * | ) |
void foo_p_not_binded | ( | std::tuple< int, int > * | ) |
void foo_r | ( | A & | ) |
void foo_r | ( | bool & | ) |
Referenced by bind_T02_function().
void foo_r | ( | double & | ) |
void foo_r | ( | float & | ) |
void foo_r | ( | int & | ) |
void foo_r | ( | long & | ) |
void foo_r | ( | std::shared_ptr< A > & | ) |
void foo_r_not_binded | ( | std::pair< int, int > & | ) |
void foo_r_not_binded | ( | std::tuple< int, int > & | ) |