definition:
|
addPackage :: LookupSet -> Package -> LookupSource -> LookupSet
addPackage (LookupSet ls o) pkg src = case Table.lookup (name pkg) ls of
Nothing -> LookupSet (update (name pkg) [(src, pkg)] ls) o
Just ps -> let ps' = filter ((/= packageId pkg) . packageId . snd) ps
in LookupSet (update (name pkg) ((src, pkg):ps') ls) o
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds a package to a lookup set.
---
--- @param l the set to add to
--- @param p the package to add
--- @param s where is the package spec from?
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({LookupSet},_,_) |-> {LookupSet}}
|
name:
|
addPackage
|
precedence:
|
no precedence defined
|
result-values:
|
{LookupSet}
|
signature:
|
LookupSet -> CPM.Package.Package -> LookupSource -> LookupSet
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|