CurryInfo: base-3.3.0 / Data.List.maximumBy

definition:
maximumBy :: (a -> a -> Ordering) -> [a] -> a
maximumBy cmp xs@(_:_) = foldl1 maxBy xs
 where
  maxBy x y = case cmp x y of
                GT -> x
                _  -> y
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Returns the maximum of a non-empty list
--- according to the given comparison function
failfree:
(_, {:})
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{:}) |-> _}
name:
maximumBy
precedence:
no precedence defined
result-values:
_
signature:
(a -> a -> Prelude.Ordering) -> [a] -> a
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
possibly non-reducible on same data term