definition: |
showOptions :: Config -> String showOptions (Config checks output verbosity hint code mLength) = "--------------------------------" ++ "\nSETTINGS:" ++ "\nverbosity: " ++ (showVerbosity verbosity) ++ "\noutput format: " ++ (show output) ++ "\nshow hint: " ++ (showBool hint) ++ "\nshow code exerpt: " ++ (showBool code) ++ "\nmaximal linelength: " ++ (show mLength) ++ "\nlist of checks: " ++ (showCheckList checks) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Returns a String containing the config settings. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Config}) |-> _} |
name: |
showOptions |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Types.Config -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |