#include <boost/python/detail/prefix.hpp>
#include <boost/python/def_visitor.hpp>
#include <boost/python/converter/arg_to_python.hpp>
#include <boost/python/detail/operator_id.hpp>
#include <boost/python/detail/not_specified.hpp>
#include <boost/python/back_reference.hpp>
#include <boost/mpl/if.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/python/self.hpp>
#include <boost/python/other.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/python/refcount.hpp>
#include <boost/python/detail/unwrap_wrapper.hpp>
#include <string>
#include <complex>
Namespaces | |
boost | |
Duration formatting facet for input. | |
boost::python | |
boost::python::detail | |
boost::python::self_ns | |
Macros | |
#define | BOOST_PYTHON_BINARY_OPERATION(id, rid, expr) |
#define | BOOST_PYTHON_BINARY_OPERATOR(id, rid, op) |
#define | BOOST_PYTHON_INPLACE_OPERATOR(id, op) |
#define | BOOST_PYTHON_UNARY_OPERATOR(id, op, func_name) |
Functions | |
template<class T > | |
PyObject * | boost::python::detail::convert_result (T const &x) |
template<class L , class R > | |
detail::operator_ < detail::op_add,L, R > | boost::python::self_ns::operator+ (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_sub,L, R > | boost::python::self_ns::operator- (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_mul,L, R > | boost::python::self_ns::operator* (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_div,L, R > | boost::python::self_ns::operator/ (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_mod,L, R > | boost::python::self_ns::operator% (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_lshift,L, R > | boost::python::self_ns::operator<< (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_rshift,L, R > | boost::python::self_ns::operator>> (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_and,L, R > | boost::python::self_ns::operator& (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_xor,L, R > | boost::python::self_ns::operator^ (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_or,L, R > | boost::python::self_ns::operator| (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_gt,L, R > | boost::python::self_ns::operator> (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_ge,L, R > | boost::python::self_ns::operator>= (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_lt,L, R > | boost::python::self_ns::operator< (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_le,L, R > | boost::python::self_ns::operator<= (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_eq,L, R > | boost::python::self_ns::operator== (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_ne,L, R > | boost::python::self_ns::operator!= (L const &, R const &) |
template<class L , class R > | |
detail::operator_ < detail::op_pow, L, R > | boost::python::self_ns::pow (L const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_iadd,self_t, R > | boost::python::self_ns::operator+= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_isub,self_t, R > | boost::python::self_ns::operator-= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_imul,self_t, R > | boost::python::self_ns::operator*= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_idiv,self_t, R > | boost::python::self_ns::operator/= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_imod,self_t, R > | boost::python::self_ns::operator%= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_ilshift,self_t, R > | boost::python::self_ns::operator<<= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_irshift,self_t, R > | boost::python::self_ns::operator>>= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_iand,self_t, R > | boost::python::self_ns::operator&= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_ixor,self_t, R > | boost::python::self_ns::operator^= (self_t const &, R const &) |
template<class R > | |
detail::operator_ < detail::op_ior,self_t, R > | boost::python::self_ns::operator|= (self_t const &, R const &) |
detail::operator_< detail::op_neg > | boost::python::self_ns::operator- (self_t const &) |
detail::operator_< detail::op_pos > | boost::python::self_ns::operator+ (self_t const &) |
detail::operator_< detail::op_abs > | boost::python::self_ns::abs (self_t const &) |
detail::operator_ < detail::op_invert > | boost::python::self_ns::operator~ (self_t const &) |
detail::operator_ < detail::op_nonzero > | boost::python::self_ns::operator! (self_t const &) |
detail::operator_< detail::op_int > | boost::python::self_ns::int_ (self_t const &) |
detail::operator_ < detail::op_long > | boost::python::self_ns::long_ (self_t const &) |
detail::operator_ < detail::op_float > | boost::python::self_ns::float_ (self_t const &) |
detail::operator_ < detail::op_complex > | boost::python::self_ns::complex_ (self_t const &) |
detail::operator_< detail::op_str > | boost::python::self_ns::str (self_t const &) |
detail::operator_ < detail::op_repr > | boost::python::self_ns::repr (self_t const &) |
#define BOOST_PYTHON_BINARY_OPERATION | ( | id, | |
rid, | |||
expr | |||
) |
#define BOOST_PYTHON_BINARY_OPERATOR | ( | id, | |
rid, | |||
op | |||
) |
#define BOOST_PYTHON_INPLACE_OPERATOR | ( | id, | |
op | |||
) |
#define BOOST_PYTHON_UNARY_OPERATOR | ( | id, | |
op, | |||
func_name | |||
) |