definition:
|
createUnderLineDoc' :: Int -> (Int -> Bool) -> String -> Doc
createUnderLineDoc' n f (_:ss)
| f n = red (text "^") <> createUnderLineDoc' (n+1) f ss
| otherwise = space <> createUnderLineDoc' (n+1) f ss
createUnderLineDoc' _ _ [] = empty
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Underlining for the case, that the warning area is in one line.
|
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) -> String -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|