definition: |
getLines :: Para -> [String] getLines (Para _ (Block ls l)) | lLen l == 0 = process ls | otherwise = process (l:ls) where process = map (unwords . reverse . map getWord . getWords) . reverse |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Returns all lines of a paragraph. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Para}) |-> _} |
name: |
getLines |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Para -> [String] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |