CurryInfo: boxes-3.0.0 / Boxes.flow

definition:
flow :: Int -> String -> [String]
flow n t = map (take n)
         . getLines
         $ foldl addWordP (emptyPara n) (map mkWord . words $ t)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Flows a given text into a given width, creating many different strings.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
flow
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Int -> String -> [String]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term