definition:
|
isPackageInCache :: String -> Package -> IO Bool
isPackageInCache pkgDir pkg = do
dirExists <- doesDirectoryExist packageDir'
fileExists <- doesFileExist packageDir'
return $ dirExists || fileExists
where
packageDir' = packageDir pkgDir pkg
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Checks whether a package is in the local cache.
---
--- @param dir the package directory
--- @param pkg the package
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
isPackageInCache
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> CPM.Package.Package -> Prelude.IO Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|