There are currently no strict fold operations (except for the Foldable instances ofc) in this package. Would it be worthwhile to add strict variants of the different folds that are provided (like foldrU, foldlU)? Or is there any particular reason to not include them?
Regarding the implementation, they could just be implemented like the default definitions of foldr' and foldl'.
There are currently no strict fold operations (except for the Foldable instances ofc) in this package. Would it be worthwhile to add strict variants of the different folds that are provided (like
foldrU,foldlU)? Or is there any particular reason to not include them?Regarding the implementation, they could just be implemented like the default definitions of
foldr'andfoldl'.