1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#include <nanobind/stl/bind_vector.h>
#include <nanobind/stl/shared_ptr.h>
namespace nb = nanobind;
NB_MODULE(test_stl_bind_vector_ext, m) {
nb::bind_vector<std::vector<unsigned int>>(m, "VectorInt");
nb::bind_vector<std::vector<bool>>(m, "VectorBool");
// Ensure that a repeated binding call is ignored
nb::bind_vector<std::vector<bool>>(m, "VectorBool");
struct El {
explicit El(int v) : a(v) {}
int a;
};
// test_vector_custom
nb::class_<El>(m, "El").def(nb::init<int>())
.def_rw("a", &El::a);
nb::bind_vector<std::vector<El>>(m, "VectorEl");
nb::bind_vector<std::vector<std::vector<El>>>(m, "VectorVectorEl");
// test_vector_shared_ptr
nb::bind_vector<std::vector<std::shared_ptr<El>>>(m, "VectorElShared");
struct E_nc {
explicit E_nc(int i) : value{i} {}
E_nc(const E_nc &) = delete;
E_nc &operator=(const E_nc &) = delete;
E_nc(E_nc &&) = default;
E_nc &operator=(E_nc &&) = default;
int value;
};
// test_noncopyable_containers
nb::class_<E_nc>(m, "ENC")
.def(nb::init<int>())
.def_rw("value", &E_nc::value);
// By default, the bindings produce a __getitem__ that makes a copy, which
// won't take this non-copyable type: (uncomment to verify build error)
//nb::bind_vector<std::vector<E_nc>>(m, "VectorENC");
// But we can request reference semantics instead (extreme care required,
// read the documentation):
nb::bind_vector<std::vector<E_nc>,
nb::rv_policy::reference_internal>(m, "VectorENC");
m.def("get_vnc", [](int n) {
std::vector<E_nc> result;
for (int i = 1; i <= n; i++)
result.emplace_back(i);
return result;
});
}
|