标签: python pybind11
我想绑定同一模板函数的两个实例。
如何避免出现如下所示的重复?
当我必须为一堆参数指定noconvert时,重复操作很繁琐。
noconvert
绑定:
PYBIND11_MODULE(_cxx, m) { m.def("yum", &yum<double>, py::arg("x").noconvert()); m.def("yum", &yum<float>, py::arg("x").noconvert()); }