definition:
|
addPackages :: LookupSet -> [Package] -> LookupSource -> LookupSet
addPackages ls pkgs src = foldl (\l p -> addPackage l p src) ls pkgs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds multiple packages to a lookup set with the same source.
---
--- @param l the set to add to
--- @param p the packages to add
--- @param s where are the package specs from?
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
addPackages
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
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
|