definition:
|
findLatestVersion :: Config -> Repository -> String -> Bool -> Maybe Package
findLatestVersion cfg repo pn pre =
case filter (isCompatibleToCompiler cfg) (findAllVersions repo pn pre) of
[] -> Nothing
(p:_) -> Just p
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Finds the latest compiler-compatbile version of a package.
---
--- @param cfg - the current CPM configuration
--- @param repo - the central package index
--- @param p - the package to search for
--- @param pre - include pre-release versions
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {Just,Nothing}}
|
name:
|
findLatestVersion
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
CPM.Config.Config -> Repository -> String -> Prelude.Bool
-> Prelude.Maybe CPM.Package.Package
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|