definition:
|
foldrWithKey :: (k -> a -> b -> b) -> b -> Map k a -> b
foldrWithKey _ z Tip = z
foldrWithKey k z (Bin key elt _ fm_l fm_r)
= foldrWithKey k (k key elt (foldrWithKey k z fm_r)) fm_l
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Folds map by given function.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{Tip}) |-> _ || (_,_,{Bin}) |-> _}
|
name:
|
foldrWithKey
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> b -> c -> c) -> c -> Map a b -> c
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|