LSST Applications g063fba187b+ea58ee1f2e,g0f08755f38+c959026f09,g12f32b3c4e+e8fc1d5a1e,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a0ca8cf93+2f198f2aa8,g28da252d5a+7e025d8f94,g2bbee38e9b+c076ca1133,g2bc492864f+c076ca1133,g3156d2b45e+41e33cbcdc,g347aa1857d+c076ca1133,g35bb328faa+a8ce1bb630,g3a166c0a6a+c076ca1133,g3e281a1b8c+b162652f75,g414038480c+6cfc39b08c,g41af890bb2+d4c324d475,g5fbc88fb19+17cd334064,g6b1c1869cb+878204452a,g781aacb6e4+a8ce1bb630,g7e767a00ed+7def0f636c,g80478fca09+a0d7f63753,g82479be7b0+60cf5d37e7,g8554a5dd34+0e332c04ee,g858d7b2824+c959026f09,g89c8672015+ff349045bf,g9125e01d80+a8ce1bb630,g9726552aa6+3a8748fa0c,ga5288a1d22+59736ba80c,gb58c049af0+d64f4d3760,gc28159a63d+c076ca1133,gcf0d15dbbd+efb7d8614d,gda3e153d99+c959026f09,gda6a2b7d83+efb7d8614d,gdaeeff99f8+1711a396fd,ge2409df99d+2c01d16122,ge79ae78c31+c076ca1133,gf0baf85859+50e8a91c63,gfb92a5be7c+c959026f09,w.2024.47
LSST Data Management Base Package
|
#include "pybind11/pybind11.h"
#include <cstddef>
#include <memory>
#include <string>
#include <sstream>
#include <utility>
#include <list>
#include <functional>
#include <iostream>
#include "lsst/pex/exceptions.h"
#include "lsst/pex/exceptions/python/Exception.h"
Go to the source code of this file.
Classes | |
class | lsst::cpputils::python::WrapperCollection |
A helper class for subdividing pybind11 module across multiple translation units (i.e. More... | |
Namespaces | |
namespace | lsst |
namespace | lsst::cpputils |
namespace | lsst::cpputils::python |
Functions | |
template<typename T , typename PyClass > | |
void | lsst::cpputils::python::addSharedPtrEquality (PyClass &cls) |
Add __eq__ and __ne__ methods based on two std::shared_ptr<T> pointing to the same address. | |
template<class PyClass > | |
void | lsst::cpputils::python::addOutputOp (PyClass &cls, std::string const &method) |
Add __str__ or __repr__ method implemented by operator<< . | |
template<class PyClass > | |
void | lsst::cpputils::python::addHash (PyClass &cls) |
Add __hash__ method implemented by std::hash . | |
std::size_t | lsst::cpputils::python::cppIndex (std::ptrdiff_t size, std::ptrdiff_t i) |
Compute a C++ index from a Python index (negative values count from the end) and range-check. | |
std::pair< std::size_t, std::size_t > | lsst::cpputils::python::cppIndex (std::ptrdiff_t size_i, std::ptrdiff_t size_j, std::ptrdiff_t i, std::ptrdiff_t j) |
Compute a pair of C++ indices from a pair of Python indices (negative values count from the end) and range-check. | |