ecmascript-immutable-data-structures
ecmascript-immutable-data-structures copied to clipboard
As per the title, what is the current progress for the Stage 0 Proposals for the immutable-data-structures? I know many people have been waiting to see how this "feature" progresses.
Jag tror du glömde ett litet utropstecken i det andra exemplet ;)
One of the most common problems I run into while using 'immutable-js' is forgetting to use the `.get` method and instead trying to read values from a Map/Vector using a...
First, I would like to confirm some assumptions about Records. I think they should be added to the .md file for more clarity. - records will work with subscripts the...
When you need to add multiple values, there is little sense in doing separate operations (and also creating intermediate objects) like: ``` javascript const a = ImmutableMap([['x', 1], ['y', 2]]);...
From what I can tell all the proposed types have extension operations defined but non of them have a subtraction, maybe syntax could be borrowed from [elm](http://www.elm-lang.org/learn/Records.elm#adding-deleting-and-renaming-fields) ? ``` js...
The combined type would work the same way as OrderedMap in Immutable-js Since Records are about Data, it doesn't make sense to keep them limited to strings for keys. Would...
How would this be achieved?
I don't see any note in the document whether those immutable data structures can contain mutable items in them or not. I would personally advocate against allowing that since: 1....
I don't see anywhere in docs but I'd like to treat my immutable data structures like normal JS ones, in that I dislike having to use `get` and `set` rather...