Generally, foldl is avoided in favor of foldl' or foldr. Quoting Real World Haskell:
Due to the thunking behavior of foldl, it is wise to avoid this function in real programs: even if it doesn't fail outright, it will be unnecessarily inefficient. Instead, import Data.List and use foldl'.
Yet some Prelude functions are defined in terms of it (e.g. (\\) and unionBy). Why is this? Is it to not introduce too much strictness to these functions?


foldlworks out better than you would think suprisingly often. – singpolyma Nov 20 '12 at 15:48(\\)andunionByare not in Prelude. – sdcvvc Nov 20 '12 at 22:20