Loading...
Searching...
No Matches
forth.h
Go to the documentation of this file.
1// BSD 3-Clause License; see https://github.com/scikit-hep/awkward/blob/main/LICENSE
2
3#ifndef AWKWARDPY_FORTH_H_
4#define AWKWARDPY_FORTH_H_
5
6#include <pybind11/pybind11.h>
7
9
10namespace py = pybind11;
11namespace ak = awkward;
12
13template <typename T, typename I>
14py::class_<ak::ForthMachineOf<T, I>, std::shared_ptr<ak::ForthMachineOf<T, I>>>
15make_ForthMachineOf(const py::handle& m, const std::string& name);
16
17#endif // AWKWARDPY_FORTH_H_
py::class_< ak::ForthMachineOf< T, I >, std::shared_ptr< ak::ForthMachineOf< T, I > > > make_ForthMachineOf(const py::handle &m, const std::string &name)
Definition ArrayBuilder.h:14