Hi, I'm still using the lib for binding my code but I cannot bind non-member operators.
Have you planned to add it?
How can I contribute to add the feature?
exemple
class Hello {
public:
Hello();
Hello(int c);
private:
int c;
};
Hello operator+(int a, Hello b);