definition:
|
plusFM :: Eq key => FM key elt -> FM key elt -> FM key elt
plusFM (FM le1 fm1) (FM _ fm2) = FM le1 (plusFM' le1 fm1 fm2)
|
demand:
|
arguments 2 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Efficiently add key/element mappings of two maps into a single one.
--- Bindings in right argument shadow those in the left
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{FM},{FM}) |-> {FM}}
|
name:
|
plusFM
|
precedence:
|
no precedence defined
|
result-values:
|
{FM}
|
signature:
|
Prelude.Eq a => FM a b -> FM a b -> FM a b
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|