pybind11: passing named arguments
pybind11
allow us to expose c++ class/function to higher abstraction level of python programming language, bringing high performance and flexibility into python
.
To pass named arguments in python
, it’s required to specify argument names in pybind11
’s interface. In this post, I will illustrate how to do that.