definition:
|
createUnderLineDoc :: Int -> (Int -> Bool) -> Bool -> String -> Doc
createUnderLineDoc n f b (s:ss)
| not (isSpace s) && not b && f n = red (text "^") <> createUnderLineDoc (n+1) f (not b) ss
| isSpace s && not b = text [s] <> createUnderLineDoc (n+1) f b ss
| f n = red (text "^") <> createUnderLineDoc (n+1) f b ss
| otherwise = space <> createUnderLineDoc (n+1) f b ss
createUnderLineDoc _ _ _ [] = empty
|
demand:
|
argument 4
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Underlines part of corresponding code which are marked in red.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,{:}) |-> _ || (_,_,_,{[]}) |-> {Doc}}
|
name:
|
createUnderLineDoc
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> (Prelude.Int -> Prelude.Bool) -> Prelude.Bool -> String
-> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|