#include <pytypes.h>

Public Member Functions | |
| str_attr_accessor | attr (const char *key) const |
| See above (the only difference is that the key is provided as a string literal) More... | |
| obj_attr_accessor | attr (handle key) const |
| obj_attr_accessor | attr (object &&key) const |
| See above (the only difference is that the key's reference is stolen) More... | |
| iterator | begin () const |
| template<typename T > | |
| bool | contains (T &&item) const |
Check if the given item is contained within this object, i.e. item in obj. More... | |
| str_attr_accessor | doc () const |
Get or set the object's docstring, i.e. obj.__doc__. More... | |
| iterator | end () const |
| Return a sentinel which ends iteration. More... | |
| bool | equal (object_api const &other) const |
| Equivalent to obj == other in Python. More... | |
| handle | get_type () const |
| bool | is (object_api const &other) const |
Equivalent to obj is other in Python. More... | |
| bool | is_none () const |
Equivalent to obj is None in Python. More... | |
| bool | not_equal (object_api const &other) const |
| object | operator& (object_api const &other) const |
| object | operator&= (object_api const &other) |
| template<return_value_policy policy = return_value_policy::automatic_reference, typename... Args> | |
| object | operator() (Args &&...args) const |
| args_proxy | operator* () const |
| object | operator* (object_api const &other) const |
| object | operator*= (object_api const &other) |
| object | operator+ (object_api const &other) const |
| object | operator+= (object_api const &other) |
| object | operator- () const |
| object | operator- (object_api const &other) const |
| object | operator-= (object_api const &other) |
| object | operator/ (object_api const &other) const |
| object | operator/= (object_api const &other) |
| bool | operator< (object_api const &other) const |
| object | operator<< (object_api const &other) const |
| object | operator<<= (object_api const &other) |
| bool | operator<= (object_api const &other) const |
| bool | operator> (object_api const &other) const |
| bool | operator>= (object_api const &other) const |
| object | operator>> (object_api const &other) const |
| object | operator>>= (object_api const &other) |
| item_accessor | operator[] (const char *key) const |
| See above (the only difference is that the key is provided as a string literal) More... | |
| item_accessor | operator[] (handle key) const |
| item_accessor | operator[] (object &&key) const |
| See above (the only difference is that the key's reference is stolen) More... | |
| object | operator^ (object_api const &other) const |
| object | operator^= (object_api const &other) |
| object | operator| (object_api const &other) const |
| object | operator|= (object_api const &other) |
| object | operator~ () const |
| template<return_value_policy policy = return_value_policy::automatic_reference, typename... Args> | |
| PYBIND11_DEPRECATED ("call(...) was deprecated in favor of operator()(...)") object call(Args &&...args) const | |
| ssize_t | ref_count () const |
| Return the object's current reference count. More... | |
| pybind11::str | str () const |
Private Member Functions | |
| const Derived & | derived () const |
| bool | rich_compare (object_api const &other, int value) const |
\rst A mixin class which adds common functions to handle, object and various accessors. The only requirement for Derived is to implement PyObject *Derived::ptr() const. \endrst
| str_attr_accessor object_api< D >::attr | ( | const char * | key | ) | const |
| obj_attr_accessor object_api< D >::attr | ( | handle | key | ) | const |
\rst Return an internal functor to access the object's attributes. Casting the returned detail::obj_attr_accessor instance to a handle or object subclass causes a corresponding call to getattr. Assigning a handle or object subclass causes a call to setattr. \endrst
| obj_attr_accessor object_api< D >::attr | ( | object && | key | ) | const |
| iterator object_api< D >::begin |
|
inlineprivate |
| str_attr_accessor object_api< D >::doc |
| iterator object_api< D >::end |
|
inline |
| handle object_api< D >::get_type |
|
inline |
|
inline |
|
inline |
| object object_api< Derived >::operator& | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator&= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator() | ( | Args &&... | args | ) | const |
\rst Assuming the Python object is a function or implements the __call__ protocol, operator() invokes the underlying function, passing an arbitrary set of parameters. The result is returned as a object and may need to be converted back into a Python object using handle::cast().
When some of the arguments cannot be converted to Python objects, the function will throw a cast_error exception. When the Python function call fails, a error_already_set exception is thrown. \endrst
| args_proxy object_api< D >::operator* |
| object object_api< Derived >::operator* | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator*= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator+ | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator+= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator- | ( | ) | const |
| object object_api< Derived >::operator- | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator-= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator/ | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator/= | ( | object_api< Derived > const & | other | ) |
|
inline |
| object object_api< Derived >::operator<< | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator<<= | ( | object_api< Derived > const & | other | ) |
|
inline |
|
inline |
|
inline |
| object object_api< Derived >::operator>> | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator>>= | ( | object_api< Derived > const & | other | ) |
| item_accessor object_api< D >::operator[] | ( | const char * | key | ) | const |
| item_accessor object_api< D >::operator[] | ( | handle | key | ) | const |
\rst Return an internal functor to invoke the object's sequence protocol. Casting the returned detail::item_accessor instance to a handle or object subclass causes a corresponding call to __getitem__. Assigning a handle or object subclass causes a call to __setitem__. \endrst
| item_accessor object_api< D >::operator[] | ( | object && | key | ) | const |
| object object_api< Derived >::operator^ | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator^= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator| | ( | object_api< Derived > const & | other | ) | const |
| object object_api< Derived >::operator|= | ( | object_api< Derived > const & | other | ) |
| object object_api< Derived >::operator~ | ( | ) | const |
| object_api< Derived >::PYBIND11_DEPRECATED | ( | "call(...) was deprecated in favor of operator()(...)" | ) | const && |
|
inline |
|
private |
| pybind11::str object_api< D >::str |