Add array uint64 t

This commit is contained in:
Lackner, Christopher 2023-09-08 17:20:27 +02:00 committed by Schöberl, Joachim
parent 7d46b22f8e
commit 3b04270006

View File

@ -24,6 +24,10 @@ PYBIND11_MODULE(pyngcore, m) // NOLINT
ExportArray<unsigned short>(m);
ExportArray<unsigned char>(m);
// Compiler dependent implementation of size_t
if constexpr(!is_same_v<size_t, uint64_t>)
ExportArray<uint64_t>(m);
ExportTable<int>(m);
py::class_<BitArray, shared_ptr<BitArray>> (m, "BitArray")