You want to make comparison operators from our class ? Only write == and > (any other combinaison), then you can deduce others using the two firsts :<br><br>!= is not ==<br>< is not > and not ==<br>etc...<br><br>Perfomance will be of course increase by writing every comparison method, but this will take you much time for a little increase. Just try to use directly the two comparison you write, and not include other like this :<br><br>=< is < or == (will become (not > and not ==) or ==, which is not very clever...)<br><br>Simple but maybe usefull,<br><br>David.