
5 Apr
2005
5 Apr
'05
12:54 a.m.
"Jesper Louis Andersen"
And gain the explicit behaviour. I do not currently have a GHC 6.4 installed here, so I cannot test this behaviour, but some code I am working on needs to be fairly compatible.
FWIW, Data.Map.insert seems to overwrite old values with the same key, just like addToFM used to: Data.Map> let x = insert 1 "foo" empty Data.Map> x {1:="foo"} Data.Map> let x' = insert 1 "bar" x Data.Map> x' {1:="bar"} -kzm -- If I haven't seen further, it is by standing in the footprints of giants