Newbie questions here concerning maps...
I want to use a map to store several user settings, which can be changed in more than one place in the app. So if they change one setting, and I then initialize and write that setting to the map, don't all the other settings get erased since I just initialized the map before writing to it?
The way I'm handling it right now is to use a global process variable for each setting and no matter which setting is changed, I write all the setting's current values to the map again, even though only one was changed. Is this a standard approach? Does a map need to be initialized each time before being written to? Thanks.