definition: |
incr :: Position -> Int -> Position incr NoPos _ = NoPos incr (Position row col) n = Position row (col + n) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({NoPos},_) |-> {NoPos} || ({Position},_) |-> {Position}} |
name: |
incr |
precedence: |
no precedence defined |
result-values: |
{NoPos,Position} |
signature: |
Position -> Prelude.Int -> Position |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |