Andrew Morris
Andrew Morris
@arximboldi I'm working on a [programming language](https://github.com/voltrevo/vortex) and using immer for the data structures when running via a virtual machine. In order to implement `
Actually, I've just realized that `::update` takes a function which receives a non-const reference to the element. The minor point about using an iterator stands though, since it should be...
Cool :+1: I think I might be missing something when thinking about the case of mutating most/all of the elements. Rather than preserving structural sharing, I want to exploit the...
Ahh ok. I think we're in sync now, cheers.
`t.tuple([])` is currently a compiler error so this shouldn't be a breaking change.
@beeflamian @myitcv Can you repro in the latest Karma? It's possible you ran into this issue which was fixed: https://github.com/karma-runner/karma/pull/2267.
I made a fork of this module, mostly because of this use of `process`. It uses `queueMicrotask` instead, which is very well supported these days: [`wait-your-turn`](https://www.npmjs.com/package/wait-your-turn).
I'd also love to see this. Btw this format in the CLI would be fantastic: ```sh zed user@host:path/to/project ``` vs code's format is very strange by comparison: ```sh code --remote...
Works for me, except you need to have the uncompressed file available too: https://github.com/cloudhead/node-static/issues/143 (As mentioned on the issue, you can put an empty file in for the uncompressed version,...
Hi @Metalymph. Thanks for your feedback and sorry for the slow reply. > If functions are pure by default, how you handles the specific cases where you want to pass...