We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The library is called immutable-js but its examples all show mutations:
immutable-js
var map = Immutable.Map({a:1, b:2, c:3}); map = map.set('b', 20); // mutation map.get('b'); // 20
This makes no sense.