immutable
Here are 718 public repositories matching this topic...
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Jul 15, 2020 - JavaScript
Currently there is no possibility to set up a custom rounding function. Therefore you are limited to the ones that are implemented by default. For my case I need a rounding function that always rounds up (e.g. 0.002 => 0.01 with precision 2, commercial rounding)
It would be nice to pass a callback or a string that describes the rounding mode. If it is a string and the string matches the suppo
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Oct 11, 2019 - JavaScript
-
Updated
Feb 12, 2019 - JavaScript
-
Updated
Jul 29, 2020 - C++
-
Updated
Sep 4, 2020 - TypeScript
-
Updated
Sep 5, 2020 - Go
Currently they wrap them into pvector which is not as efficient as it could be in Python 3.
-
Updated
Aug 14, 2020 - JavaScript
-
Updated
Aug 6, 2020 - HTML
-
Updated
Dec 22, 2019 - JavaScript
-
Updated
May 25, 2020 - C
Since Cids are already cryptographic-hash-based objects, it makes sense not to do too much extra work hashing them again when used as HashMap/HashSet keys; the hash_hasher crate could be used to improve the performance.
-
Updated
Sep 4, 2020 - Kotlin
dropRight operation
This operations will be used to drop elements in the steam on the right of the given element
var elements = []int{10,12,7,41,5,6}
res:=koazee.StreamOf(elements).DropRight(12).Out().Val()
fmt.Println(res)
// [10,12]
-
Updated
Feb 11, 2020 - Java
-
Updated
Aug 22, 2018 - JavaScript
-
Updated
Mar 12, 2019 - Go
Improve this page
Add a description, image, and links to the immutable topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the immutable topic, visit your repo's landing page and select "manage topics."
clear Map produce incorrect patches
Link to repro
codebox link: https://codesandbox.io/s/immer-sandbox-forked-zz8le
immer source code
https://github.com/immerjs/immer/blob/bf90358c1bfedf0afb6e3bb016d6e6233b96e3ac/src/plugins/mapset.ts#L112
this line clears the
assigned_, and Patch Plugin gen patches depends oneach(state.assigned_)https://github.com/imm