definition:
|
fillSep :: [Doc] -> Doc
fillSep = compose (</>)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(fillSep xs)` concatenates documents `xs` horizontally with
--- `(</>)` as long as its fits the page, than inserts a
--- `line` and continues doing that for all documents in `xs`.
--- `fillSep xs = foldr (</>) empty xs`
--- @param xs - a list of documents
--- @return horizontal concatenation of documents
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {compose}}
|
name:
|
fillSep
|
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
|