<<< | Index | Kinds of operators >>> |
A simple mechanism for improving program readability...
...or for making programs completely unreadable!
Syntactic sugar replacing function calls.
The idea is to allow operator syntax for objects:
Point p1;
Point p2;
//...
if ( p1 == p2 ) {
//...
}
<<< | Index | Kinds of operators >>> |