elm-community / list-extra

Convenience functions for working with List.
http://package.elm-lang.org/packages/elm-community/list-extra/latest
MIT License
135 stars 58 forks source link

Tail call optimiziations #153

Open Chadtech opened 2 years ago

Chadtech commented 2 years ago

@jfmengels did some tail call optimizing on a few functions a wall back (Thanks @jfmengels ). He noted that with this command:

npx elm-review --template jfmengels/elm-review-performance/example --rules NoUnoptimizedRecursion

many more could be fixed. I ran it myself a while back and found ~10 functions that could be optimized.

It would be cool to go through those. Fixing them one at a time and measuring the performance gain.