In other words, can I take the address of < , <=, etc
Or would I have to do something with stl
&std::operator<double> <(double, double)
Eveentually I want to set up a map like
typedef (*opPtr)(double, double);
std::map< const char*, opPtr > operatorMap;
operatorMap["LE"] =...