definition:
|
vsep :: [Doc] -> Doc
vsep = compose ($$)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(vsep xs)` concatenates all documents `xs` vertically with
--- `($$)`. If a group undoes the line breaks inserted by `vsep`,
--- all documents are separated with a `space`.
---
--- someText = map text (words ("text to lay out"))
--- test = text "some" <+> vsep someText
---
--- This is layed out as:
---
--- some text
--- to
--- lay
--- out
---
--- The `align` combinator can be used to align the documents
--- under their first element:
---
--- test = text "some" <+> align (vsep someText)
---
--- This is printed as:
---
--- some text
--- to
--- lay
--- out
---
--- @param xs - a list of documents
--- @return vertical concatenation of documents
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {compose}}
|
name:
|
vsep
|
precedence:
|
no precedence defined
|
result-values:
|
{compose}
|
signature:
|
[Text.PrettyImpl.Doc] -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|