definition: |
moveLeft :: Int -> Box -> Box moveLeft n b = alignHoriz left (cols b + n) b |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
Move a box left by putting it into a larger box with extra columns, aligned to the left. Note that this will only move the box by the specified amount if it is already in a larger right-aligned box. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
moveLeft |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Int -> Box -> Box |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |