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
{{ message }}
This repository was archived by the owner on Mar 13, 2024. It is now read-only.
Mutation just isn't worth it, I have some functions which mutate right now, it's just a recipe for pointer bugs. Clean mutation, using R.clone where needed for deep-cloning. We shouldn't be mutation function args either, as those are just pointers to the actual values.
The text was updated successfully, but these errors were encountered:
Mutation just isn't worth it, I have some functions which mutate right now, it's just a recipe for pointer bugs. Clean mutation, using
R.clone
where needed for deep-cloning. We shouldn't be mutation function args either, as those are just pointers to the actual values.The text was updated successfully, but these errors were encountered: