definition:
|
para :: Alignment -> Int -> String -> Box
para a n t = (\ss -> mkParaBox a (length ss) ss) $ flow n t
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Create a box of the given width, containing a specific text. The text is
--- flowed to fit the width according to the alignment.
---
--- @param a the alignment of the text
--- @param w the box's width
--- @param c the box's contents
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
para
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Alignment -> 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
|