definition:
|
unitFM :: (LeKey key) -> key -> elt -> FM key elt
unitFM le key elt = FM le (unitFM' key elt)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Construct a finite map with only a single element.
--- @param le an irreflexive order predicate on the keys.
--- @param key key of
--- @param elt the single element to form
--- @result a finite map with only a single element
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {FM}}
|
name:
|
unitFM
|
precedence:
|
no precedence defined
|
result-values:
|
{FM}
|
signature:
|
(a -> a -> Prelude.Bool) -> a -> b -> FM a b
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|