definition: |
encloseSepSpaced :: Doc -> Doc -> Doc -> [Doc] -> Doc encloseSepSpaced l r s = encloseSep (l <> space) (space <> r) (s <> space) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- The document `(encloseSepSpaced l r s xs)` concatenates the documents `xs` --- seperated by `s` and encloses the resulting document by `l` and `r`. --- In addition, after each occurrence of `s`, after `l`, and before `r`, --- a `space` is inserted. --- The documents are rendered horizontally if that fits the page. Otherwise --- they are aligned vertically. All seperators are put in front of the --- elements. --- --- @param l - left document --- @param r - right document --- @param s - a document as seperator --- @param xs - a list of documents --- @return concatenation of l, xs (with s in between) and r |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> {encloseSep}} |
name: |
encloseSepSpaced |
precedence: |
no precedence defined |
result-values: |
{encloseSep} |
signature: |
Text.PrettyImpl.Doc -> Text.PrettyImpl.Doc -> Text.PrettyImpl.Doc -> [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 |