definition:
|
findVersion :: GlobalCache -> String -> Version -> Maybe Package
findVersion (GlobalCache ps) p v =
if null hits
then Nothing
else Just $ head hits
where
hits = filter ((== v) . version) $ filter ((== p) . name) ps
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Finds a specific version of a package.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({GlobalCache},_,_) |-> _}
|
name:
|
findVersion
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
GlobalCache -> String
-> (Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe String)
-> 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
|