definition: |
sep :: [Doc] -> Doc sep = group . vsep |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- The document `(sep xs)` concatenates all documents `xs` either horizontally --- with `(<+>)`, if it fits the page, or vertically --- with `($$)`. --- `sep xs = group (vsep xs)` --- @param xs - a list of documents --- @return horizontal concatenation of documents, if it fits the page, --- or vertical concatenation else |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {.._#lambda508}} |
name: |
sep |
precedence: |
no precedence defined |
result-values: |
{.._#lambda508} |
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 |