definition:
|
(<>) :: Doc -> Doc -> Doc
d1 <> d2
| isEmpty d1 = d2
| isEmpty d2 = d1
| otherwise = Doc (deDoc d1 . deDoc d2)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(x <> y)` concatenates document `x` and document `y`.
--- It is an associative operation having `empty` as a left and right unit.
--- @param x - the first document
--- @param y - the second document
--- @return concatenation of x and y without seperator with identity empty
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
infixl
|
iotype:
|
{(_,_) |-> _}
|
name:
|
<>
|
precedence:
|
6
|
result-values:
|
_
|
signature:
|
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
|