definition: |
updateValue :: Eq a => (a,b) -> [(a,b)] -> [(a,b)] updateValue _ [] = [] updateValue (key1,newValue) ((key2,value2):list) = if key1==key2 then (key1,newValue):list else (key2,value2):(updateValue (key1,newValue) list) |
demand: |
argument 3 |
deterministic: |
deterministic operation |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{[]}) |-> {[]} || (_,{(,)},{:}) |-> {:}} |
name: |
updateValue |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
Prelude.Eq a => (a, b) -> [(a, b)] -> [(a, b)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |