in include/kernel_function.hpp [60:66]
double operator()(nb::handle& a, nb::handle& b) const override {
NB_OVERRIDE_PURE_NAME(
"__call__", // Name of function in python
operator(), // Name of function in C++
a, b // Arguments
);
}