definition: |
addWordL :: Word -> Line -> Line addWordL w (Line len ws) = Line (len + wLen w + 1) (w:ws) |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Adds a word to a line. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{Line}) |-> {Line}} |
name: |
addWordL |
precedence: |
no precedence defined |
result-values: |
{Line} |
signature: |
Word -> Line -> Line |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |