definition:
|
columns :: Alignment -> Int -> Int -> String -> [Box]
columns a w h t = map (mkParaBox a h) . chunksOf h $ flow w t
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Creates a list of boxes, each of a specific width and height. The given
--- text is flowed into as many columns as necessary according to the given
--- alignment.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
columns
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Alignment -> Prelude.Int -> Prelude.Int -> String -> [Box]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|