definition:
|
compose :: (Doc -> Doc -> Doc) -> [Doc] -> Doc
compose _ [] = empty
compose op ds@(_:_) = foldr1 op ds -- no seperator at the end
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(compose f xs)` concatenates all documents `xs`
--- with function `f`.
--- Function `f` should be like `(<+>)`, `($$)` and so on.
--- @param f - a combiner function
--- @param xs - a list of documents
--- @return concatenation of documents
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {Doc} || (_,{:}) |-> _}
|
name:
|
compose
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
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
|