Algernon83
Programmer
There's a point in my code where it's useful for a particular function to take another function as an argument. There's no trouble doing this with functions in the global scope, but I want to be able to pass it a method of a class (as in Class::Method). Unfortunately, it fails with a message of "undefined function: class::method". Is there a better fix for this than making a wrapper function, as I have it now?