definition:
|
getLineDoc :: Int -> (Int -> Bool) -> String -> Doc
getLineDoc n f (s:ss)
| f n = red (text ([s])) <> getLineDoc (n+1) f ss
| otherwise = text [s] <> getLineDoc (n+1) f ss
getLineDoc _ _ [] = empty
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Retrieves code excerpt and marks parts red by given condition.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{:}) |-> _ || (_,_,{[]}) |-> {Doc}}
|
name:
|
getLineDoc
|
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
|