definition: |
movePoint :: Point -> (Float,Float) -> Point movePoint (x,y) (dx,dy) = (x+dx,y+dy) |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,)},{(,)}) |-> {(,)}} |
name: |
movePoint |
precedence: |
no precedence defined |
result-values: |
{(,)} |
signature: |
(Prelude.Float, Prelude.Float) -> (Prelude.Float, Prelude.Float) -> (Prelude.Float, Prelude.Float) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |