foldLeft

inline fun <Acc> foldLeft(b: Acc, f: (Acc, E) -> Acc): Acc

Deprecated

Use the version with two type arguments

Replace with

foldLeft2(b, f)