Pardon if this turns out to be a stupid question.
The Haskell sortBy function takes (a -> a -> Ordering) as its first argument. Can anyone educate me as to what the reasoning is there? My background is entirely in languages that have a similar function take (a -> a -> Bool) instead, so having to write one that returns LT/GT was a bit confusing.
Is this the standard way of doing it in statically typed/pure functional languages? Is this peculiar to ML-descended languages? Is there some fundamental advantage to it that I'm not seeing, or some hidden *dis*advantage to using booleans instead?
Summarizing Edit:
An
Orderingis notGT | LT, it's actuallyGT | EQ | LT(apparently GHC doesn't make use of this under the hood for the purposes of sorting, but still)Returning a trichotomic value more closely models the possible outcomes of a comparison of two elements
In certain cases, using
Orderingrather than aBoolwill save a comparisonUsing an
Orderingmakes it easier to implement stable sortsUsing an
Orderingmakes it clear to readers that a comparison between two elements is being done (a boolean doesn't inherently carry this meaning, though I get the feeling many readers will assume it)
I'm tentatively accepting Carl's answer, and posting the above summary since no single answer has hit all the points as of this edit.

Boolto representOrdering?Boolhas two values,Orderinghas three. – Abhinav Sarkar Aug 28 '12 at 4:16qsort(C) orstd::sort(C++). – n.m. Aug 28 '12 at 4:21qsorttakes a 3-valued comparison function, just like Haskell'ssortBy; butstd::sorttakes a Boolean-valued one. – n.m. Aug 28 '12 at 4:33comparecan potentially be faster than just having, say,(<=). In the latter case, we'd have to writex < y = x <= y && x /= y, and similarly for the other comparison functions, which could be expensive and is redundant to boot. Usingcompare, we can compute all the information at once, which lets us writex < y = compare x y == LT,x <= y = compare x y /= GT, etc. – Antal S-Z Aug 28 '12 at 6:15