In boost::python
, to wrap a vector<T>
you would do something like this:
boost::python::class_< std::vector < T > >("T")
.def(boost::python::vector_indexing_suite<std::vector< T > >());
How do I accomplish the same thing in nanobind?
In boost::python
, to wrap a vector<T>
you would do something like this:
boost::python::class_< std::vector < T > >("T")
.def(boost::python::vector_indexing_suite<std::vector< T > >());
How do I accomplish the same thing in nanobind?
Copyright © 2021 Jogjafile Inc.
Include the header
<nanobind/stl/bind_vector.h>
and then its just: