You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a few places internally that use unnecessary intermediate object allocation, especially operations over maps.
One project which has helped with this problem is https://github.com/cgrand/xforms
It has a syntactically easy abstraction of creating reduce-kv equivalent transducing contexts which avoid intermediate k/v vectors.
The text was updated successfully, but these errors were encountered:
Not sure how much that would improve, and currently I have no time to prioritize this. If you really feel this is a good approach, I could look into a PR with the changes, just can't do it myself.
There are a few places internally that use unnecessary intermediate object allocation, especially operations over maps.
One project which has helped with this problem is https://github.com/cgrand/xforms
It has a syntactically easy abstraction of creating
reduce-kv
equivalent transducing contexts which avoid intermediate k/v vectors.The text was updated successfully, but these errors were encountered: