definition: |
getPackageModules :: Options -> String -> String -> IO [String] getPackageModules opts pkg vsn = do printWhenStatus opts $ "Get modules of package '" ++ pkg ++ "-" ++ vsn ++ "'..." queryCurryInfoWithOptions opts { optVerb = 0 } [("--package",pkg), ("--version",vsn)] "modules" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Get all modules of a package version by `curry-info`. --- In case of a parse error, the program is terminated with an error state. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
getPackageModules |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
CPM.Query.Options.Options -> String -> String -> Prelude.IO [String] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |