definition:
|
punctuateV :: Alignment -> Box -> [Box] -> Box
punctuateV a p bs = vcat a (intersperse p bs)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Combine a list of boxes vertically with the given alignment and a copy of
--- the given box between each two boxes.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {Box}}
|
name:
|
punctuateV
|
precedence:
|
no precedence defined
|
result-values:
|
{Box}
|
signature:
|
Alignment -> Box -> [Box] -> Box
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|