definition:
|
findLatestVersion :: LookupSet -> String -> Bool -> Maybe Package
findLatestVersion ls p pre = case findAllVersions ls p pre of
[] -> Nothing
(x:_) -> Just x
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Finds the latest version of a package known to the lookup set.
---
--- @param l the lookup set
--- @param p the name of the package to search for
--- @param pre should pre-release versions be included?
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {Just,Nothing}}
|
name:
|
findLatestVersion
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
LookupSet -> 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
|