On Tue, 08 May 2007 09:43:28 -0300 Ary Manzana <ary at esperanto.org.ar> wrote: > Maybe something like this: > --- > int opCmp(T other) { > return this.value > other ? 1 : > (this.value < other ? -1 : 0); > } I always write this as: return this.value < other ? -1 : this.value > other; Which is more leet (read unreadable) ,-) Henning