I have a method that needs a function pointer but it would be nice to use a converted delegate pointer instead.
I know you can convert functions into delegates using:
http://dlang.org/phobos/std_functional.html#.toDelegate but can
you do this the other way around?
- Is it possible to convert a delegate into a function? Gary Willoughby