definition: |
movePosByString :: Pos -> String -> Pos movePosByString p "" = p movePosByString p (c:cs) = movePosByString (movePosByChar p c) cs |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Move the position multiple characters |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{[]}) |-> _ || (_,{:}) |-> _} |
name: |
movePosByString |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Pos -> String -> Pos |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |