#include <string>
#include <pybind11/pybind11.h>
#include "awkward/partition/PartitionedArray.h"
#include "awkward/partition/IrregularlyPartitionedArray.h"
Go to the source code of this file.
Functions | |
py::class_< ak::PartitionedArray, std::shared_ptr< ak::PartitionedArray > > | make_PartitionedArray (const py::handle &m, const std::string &name) |
Makes an abstract PartitionedArray class in Python that mirrors the one in C++. | |
py::class_< ak::IrregularlyPartitionedArray, std::shared_ptr< ak::IrregularlyPartitionedArray >, ak::PartitionedArray > | make_IrregularlyPartitionedArray (const py::handle &m, const std::string &name) |
Makes an IrregularlyPartitionedArray in Python that mirrors the one in C++. | |
py::class_< ak::IrregularlyPartitionedArray, std::shared_ptr< ak::IrregularlyPartitionedArray >, ak::PartitionedArray > make_IrregularlyPartitionedArray | ( | const py::handle & | m, |
const std::string & | name | ||
) |
Makes an IrregularlyPartitionedArray in Python that mirrors the one in C++.
py::class_< ak::PartitionedArray, std::shared_ptr< ak::PartitionedArray > > make_PartitionedArray | ( | const py::handle & | m, |
const std::string & | name | ||
) |
Makes an abstract PartitionedArray class in Python that mirrors the one in C++.