konsumlamm / extended-containers

A Haskell library for containers to extend the containers and unordered-containers packages.
BSD 3-Clause "New" or "Revised" License
5 stars 0 forks source link

fix folds with key #1

Closed konsumlamm closed 5 years ago

konsumlamm commented 5 years ago

The fold with key functions currently use toList, which uses foldrWithKey, resulting in an infinite recursion. Rewrite the fold with key functions without toList to fix this.

konsumlamm commented 5 years ago

Should be fixed by now.