Public Member Functions | Protected Member Functions | Static Protected Member Functions | List of all members
cpp_function Class Reference

Wraps an arbitrary C++ function/method/lambda function/.. into a callable Python object. More...

#include <pybind11.h>

Inheritance diagram for cpp_function:
Inheritance graph
[legend]

Public Member Functions

 cpp_function ()=default
 
 cpp_function (std::nullptr_t)
 
template<typename Return , typename... Args, typename... Extra>
 cpp_function (Return(*f)(Args...), const Extra &...extra)
 Construct a cpp_function from a vanilla function pointer. More...
 
template<typename Func , typename... Extra, typename = detail::enable_if_t<detail::is_lambda<Func>::value>>
 cpp_function (Func &&f, const Extra &...extra)
 Construct a cpp_function from a lambda function (possibly with internal state) More...
 
template<typename Return , typename Class , typename... Arg, typename... Extra>
 cpp_function (Return(Class::*f)(Arg...), const Extra &...extra)
 Construct a cpp_function from a class method (non-const, no ref-qualifier) More...
 
template<typename Return , typename Class , typename... Arg, typename... Extra>
 cpp_function (Return(Class::*f)(Arg...)&, const Extra &...extra)
 
template<typename Return , typename Class , typename... Arg, typename... Extra>
 cpp_function (Return(Class::*f)(Arg...) const, const Extra &...extra)
 Construct a cpp_function from a class method (const, no ref-qualifier) More...
 
template<typename Return , typename Class , typename... Arg, typename... Extra>
 cpp_function (Return(Class::*f)(Arg...) const &, const Extra &...extra)
 
object name () const
 Return the function name. More...
 
- Public Member Functions inherited from function
handle cpp_function () const
 
bool is_cpp_function () const
 
- Public Member Functions inherited from object
template<typename T >
T cast () const &
 
template<typename T >
T cast ()&&
 
template<>
void cast () const &
 
template<>
void cast ()&&
 
 object ()=default
 
 object (const object &o)
 Copy constructor; always increases the reference count. More...
 
 object (object &&other) noexcept
 Move constructor; steals the object from other and preserves its reference count. More...
 
 object (handle h, borrowed_t)
 
 object (handle h, stolen_t)
 
objectoperator= (const object &other)
 
objectoperator= (object &&other) noexcept
 
 PYBIND11_DEPRECATED ("Use reinterpret_borrow<object>() or reinterpret_steal<object>()") object(handle h
 
handle release ()
 
 ~object ()
 Destructor; automatically calls handle::dec_ref() More...
 
- Public Member Functions inherited from handle
template<typename T >
T cast () const
 
template<>
void cast () const
 
bool check () const
 
const handledec_ref () const &
 
 handle ()=default
 The default constructor creates a handle with a nullptr-valued pointer. More...
 
 handle (PyObject *ptr)
 Creates a handle from the given raw Python object pointer. More...
 
const handleinc_ref () const &
 
 operator bool () const
 Return true when the handle wraps a valid Python object. More...
 
bool operator!= (const handle &h) const
 
bool operator== (const handle &h) const
 
PyObject * ptr () const
 Return the underlying PyObject * pointer. More...
 
PyObject *& ptr ()
 

Protected Member Functions

template<typename Func , typename Return , typename... Args, typename... Extra>
void initialize (Func &&f, Return(*)(Args...), const Extra &...extra)
 Special internal constructor for functors, lambda functions, etc. More...
 
void initialize_generic (detail::function_record *rec, const char *text, const std::type_info *const *types, size_t args)
 Register a function call with Python (generic non-templated code goes here) More...
 
PYBIND11_NOINLINE detail::function_record * make_function_record ()
 Space optimization: don't inline this frequently instantiated fragment. More...
 

Static Protected Member Functions

static void destruct (detail::function_record *rec)
 When a cpp_function is GCed, release any memory allocated by pybind11. More...
 
static PyObject * dispatcher (PyObject *self, PyObject *args_in, PyObject *kwargs_in)
 Main dispatch logic for calls to functions bound using pybind11. More...
 

Additional Inherited Members

- Public Attributes inherited from object
bool is_borrowed: handle(h) { if (is_borrowed) inc_ref()
 
- Protected Attributes inherited from handle
PyObject * m_ptr = nullptr
 

Detailed Description

Wraps an arbitrary C++ function/method/lambda function/.. into a callable Python object.

Definition at line 56 of file pybind11.h.

Constructor & Destructor Documentation

cpp_function::cpp_function ( )
default
cpp_function::cpp_function ( std::nullptr_t  )
inline

Definition at line 59 of file pybind11.h.

template<typename Return , typename... Args, typename... Extra>
cpp_function::cpp_function ( Return(*)(Args...)  f,
const Extra &...  extra 
)
inline

Construct a cpp_function from a vanilla function pointer.

Definition at line 63 of file pybind11.h.

template<typename Func , typename... Extra, typename = detail::enable_if_t<detail::is_lambda<Func>::value>>
cpp_function::cpp_function ( Func &&  f,
const Extra &...  extra 
)
inline

Construct a cpp_function from a lambda function (possibly with internal state)

Definition at line 70 of file pybind11.h.

template<typename Return , typename Class , typename... Arg, typename... Extra>
cpp_function::cpp_function ( Return(Class::*)(Arg...)  f,
const Extra &...  extra 
)
inline

Construct a cpp_function from a class method (non-const, no ref-qualifier)

Definition at line 77 of file pybind11.h.

template<typename Return , typename Class , typename... Arg, typename... Extra>
cpp_function::cpp_function ( Return(Class::*)(Arg...) f ,
const Extra &...  extra 
)
inline

Construct a cpp_function from a class method (non-const, lvalue ref-qualifier) A copy of the overload for non-const functions without explicit ref-qualifier but with an added &.

Definition at line 86 of file pybind11.h.

template<typename Return , typename Class , typename... Arg, typename... Extra>
cpp_function::cpp_function ( Return(Class::*)(Arg...) const  f,
const Extra &...  extra 
)
inline

Construct a cpp_function from a class method (const, no ref-qualifier)

Definition at line 93 of file pybind11.h.

template<typename Return , typename Class , typename... Arg, typename... Extra>
cpp_function::cpp_function ( Return(Class::*)(Arg...) const f ,
const Extra &...  extra 
)
inline

Construct a cpp_function from a class method (const, lvalue ref-qualifier) A copy of the overload for const functions without explicit ref-qualifier but with an added &.

Definition at line 102 of file pybind11.h.

Member Function Documentation

static void cpp_function::destruct ( detail::function_record *  rec)
inlinestaticprotected

When a cpp_function is GCed, release any memory allocated by pybind11.

Definition at line 437 of file pybind11.h.

static PyObject* cpp_function::dispatcher ( PyObject *  self,
PyObject *  args_in,
PyObject *  kwargs_in 
)
inlinestaticprotected

Main dispatch logic for calls to functions bound using pybind11.

Definition at line 460 of file pybind11.h.

template<typename Func , typename Return , typename... Args, typename... Extra>
void cpp_function::initialize ( Func &&  f,
Return(*)(Args...)  ,
const Extra &...  extra 
)
inlineprotected

Special internal constructor for functors, lambda functions, etc.

Definition at line 118 of file pybind11.h.

void cpp_function::initialize_generic ( detail::function_record *  rec,
const char *  text,
const std::type_info *const *  types,
size_t  args 
)
inlineprotected

Register a function call with Python (generic non-templated code goes here)

Definition at line 221 of file pybind11.h.

PYBIND11_NOINLINE detail::function_record* cpp_function::make_function_record ( )
inlineprotected

Space optimization: don't inline this frequently instantiated fragment.

Definition at line 112 of file pybind11.h.

object cpp_function::name ( void  ) const
inline

Return the function name.

Definition at line 108 of file pybind11.h.


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


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:51:47