|
| template<class Target , class Key > |
| object | boost::python::api::getattr (Target const &target, Key const &key) |
| |
| template<class Target , class Key , class Default > |
| object | boost::python::api::getattr (Target const &target, Key const &key, Default const &default_) |
| |
| template<class Key , class Value > |
| void | boost::python::api::setattr (object const &target, Key const &key, Value const &value) |
| |
| template<class Key > |
| void | boost::python::api::delattr (object const &target, Key const &key) |
| |
| template<class Target , class Key > |
| object | boost::python::api::getitem (Target const &target, Key const &key) |
| |
| template<class Key , class Value > |
| void | boost::python::api::setitem (object const &target, Key const &key, Value const &value) |
| |
| template<class Key > |
| void | boost::python::api::delitem (object const &target, Key const &key) |
| |
| template<class Target , class Begin , class End > |
| object | boost::python::api::getslice (Target const &target, Begin const &begin, End const &end) |
| |
| template<class Begin , class End , class Value > |
| void | boost::python::api::setslice (object const &target, Begin const &begin, End const &end, Value const &value) |
| |
| template<class Begin , class End > |
| void | boost::python::api::delslice (object const &target, Begin const &begin, End const &end) |
| |