definition:
|
($$) :: Doc -> Doc -> Doc
($$) = combine line
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- The document `(x $$ y)` concatenates document x and y with a
--- `line` in between with identity `empty`.
--- @param x - the first document
--- @param y - the second document
--- @return concatenation of x and y with a line in between
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
infixl
|
iotype:
|
{() |-> {combine}}
|
name:
|
$$
|
precedence:
|
5
|
result-values:
|
{combine}
|
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
|