definition:
|
mapWithKey :: (k -> a -> b) -> Map k a -> Map k b
mapWithKey _ Tip = Tip
mapWithKey f (Bin key a size' m_l m_r)
= Bin key (f key a) size' (mapWithKey f m_l) (mapWithKey f m_r)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Applies a given function on every element in the map.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Tip}) |-> {Tip} || (_,{Bin}) |-> {Bin}}
|
name:
|
mapWithKey
|
precedence:
|
no precedence defined
|
result-values:
|
{Bin,Tip}
|
signature:
|
(a -> b -> c) -> Map a b -> Map a c
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|