When should I use `withMutations` on a map in Immutable.js?
You should use withMutations when you want to group several changes on an object. Because each change creates a clone, several changes in a row cause several clones. Use withMutations to apply several changes then clone once at the end. A clone at every step means that you are reading the entire list for each … Read more