Javascript Foncteur
I just discovered, this morning, how to create a Visitor in Javascript: A visitor is an objet who can be used like a function:
var my_foncteur = new A_Foncteur();
my_foncteur.can_have_methods(42);
my_foncteur("Can be called like a function");
Implementing it in C++
is extremly easy, using operator overloading, so
overloading …