I'm writing sorting routine that (of course) compares two objects. In general, this breaks down to something of the form:
if( a < b ) ...
...where the less-than is the operator and a,b are the operands. But in this case they're a pretty specific type of operand so I'm wondering if there's a special name for them. The less-than would likely be called a Comparator. Would a,b be Comperands? Is there a special name for these already, or did my friend Satbir just invent one?