definition: |
vcat :: Alignment -> [Box] -> Box vcat a bs = Box h w (Col $ map (alignHoriz a w) bs) where (h, w) = sumMax rows 0 cols bs |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Combines a list of boxes vertically with the given alignment. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {Box}} |
name: |
vcat |
precedence: |
no precedence defined |
result-values: |
{Box} |
signature: |
Alignment -> [Box] -> Box |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |