Tagged Questions

8
votes
3answers
10k views

Updating a java map entry

I'm facing a problem that seems to have no straighforward solution. I'm using java.util.Map, and I want to update the value in a Key-Value pair. Right now, I'm doing it lik this: private ...
0
votes
3answers
238 views

Is there an in-place equivalent to 'map' in python?

Possible Duplicate: Python: map in place I have a list of strings that I need to sanitize. I have a method for sanitizing them, so I could just do: new_list = map(Sanitize, old_list) ...