definition:
|
maxFM :: FM a b -> Maybe (a,b)
maxFM = max . tree
where
max EmptyFM = Nothing
max (BranchFM k x _ _ r) | isBranchFM r = max r
| otherwise = Just (k,x)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Retrieves the greatest key/element pair in the finite map
--- according to the basic key ordering.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {.._#lambda508}}
|
name:
|
maxFM
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
FM a b -> Prelude.Maybe (a, b)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|