A couple of weeks ago, I released a new array implementation for Elm on elm-package.
Why do we need a new implementation? Well, the implementation we've got in core isn't always immutable, and sometimes it crashes at runtime (see the list of bugs here: https://github.com/elm-lang/core/issues/649). It's also written entirely in javascript, is poorly documented and not so well understood. The new implementation fixes all of this, but to make sure it is as stable as I think it is, it needs to be tested. If you have a project where you use arrays, or stopped using arrays because of bugs, please consider testing this new implementation out. To get started, install Skinney/elm-array-exploration, and replaced ever instance of `import Array` in your code with `import Hamt.Array as Array`. If everything is working correctly, then great! If not, please let me know so it can be fixed. Thanks for your help :) -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
