definition:
|
findAllVersions :: GlobalCache -> String -> Bool -> [Package]
findAllVersions (GlobalCache ps) p pre = sortBy pkgGt
$ filter filterPre
$ filter ((== p) . name) ps
where
filterPre p' = pre || (not . isPreRelease . version) p'
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Finds all versions of a package in the global package cache.
---
--- @param gc - the global package cache
--- @param p - the name of the package
--- @param pre - include pre-release versions
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({GlobalCache},_,_) |-> _}
|
name:
|
findAllVersions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
GlobalCache -> String -> Prelude.Bool -> [CPM.Package.Package]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|