Often times you need to write wrappers or proxies that are required to support "forwarding functions", i.e. functions that just forward requests to similarly named functions, or do something parametrised by function name. The tedious way to do it is something like this:
class C
(
Read more... )