definition: |
showConfiguration :: Config -> String showConfiguration cfg = unlines [ "Compiler version : " ++ showCompilerVersion cfg , "Compiler base version : " ++ compilerBaseVersion cfg , "CURRY_BIN : " ++ curryExec cfg , "REPOSITORY_PATH : " ++ repositoryDir cfg , "PACKAGE_INSTALL_PATH : " ++ packageInstallDir cfg , "BIN_INSTALL_PATH : " ++ binInstallDir cfg , "APP_PACKAGE_PATH : " ++ appPackageDir cfg , "HOME_PACKAGE_PATH : " ++ homePackageDir cfg , "PACKAGE_INDEX_URL : " ++ intercalate "|" (packageIndexURLs cfg) , "PACKAGE_TARFILES_URL : " ++ intercalate "|" (packageTarFilesURLs cfg) ] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Shows the configuration. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
showConfiguration |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Config -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |