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