definition: |
showVerbosity :: Int -> String showVerbosity v = case v of 0 -> "quiet, only show check warnings" 1 -> "default, enable showing hints and code part, segment output of each file" 2 -> "verbose, INFO and WARNING messages concerning progress of the tool are shown" 3 -> "debug, show options" _ -> "unknown verbosity level" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Details verbosity level. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {:}} |
name: |
showVerbosity |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
Prelude.Int -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |