Instant is
off
|
Search plugin
|
Manual
|
haskell.org
comparing
Packages
base
comparing
:: Ord a => (b -> a) -> b -> b -> Ordering
base
Data.Ord
> comparing p x y = compare (p x) (p y) Useful combinator for use in conjunction with the xxxBy family of functions from
Data.List
, for example: > ... sortBy (comparing fst) ...
©
Neil Mitchell
2004-2012, version 4.2.11