definition: |
processOpts :: Options -> IO Options processOpts opts = do isterm <- hIsTerminalDevice stdout return $ if isterm then opts else opts { optColor = False} |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Further option processing, e.g., setting coloring mode. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
processOpts |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Options -> Prelude.IO Options |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |