v0.0.15
"copy on write" for bucket in case of any update on map if map iterator created.
We can iterate over buckets safly while we do not change anything. If we add/remove keys we save old buket storage to iterator and give new storage to map (copy required). So we copy data only in rare case when we change anything while iterate over map.