definition:
|
indent :: Int -> Doc -> Doc
indent i d = hang i (spaces i <> d)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(indent i d)` indents document `d` with `i` spaces.
---
--- test = indent 4 (fillSep (map text
--- (words "the indent combinator indents these words !")))
---
--- Which lays out with a page width of 20 as:
---
--- the indent
--- combinator
--- indents these
--- words !
---
--- @param i - an integer which increases the indentation level
--- @param d - a document
--- @return document d with an indentation level set to the current column
--- plus i
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {Doc}}
|
name:
|
indent
|
precedence:
|
no precedence defined
|
result-values:
|
{Doc}
|
signature:
|
Prelude.Int -> Text.PrettyImpl.Doc -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|