How to write to map while iterating on it?
Docs say “CreateIterator will return an iterator with read-write access (…)”
So how to use that write access? Because if I were simply to Map.Add(key, value)
I might as well be using CreateConstIterator
.
Thanks