For instance, `Try` is doing this: ``` fun <A, ...
# arrow-contributors
p
For instance,
Try
is doing this:
Copy code
fun <A, B> Try<A>.foldLeft(b: B, f: (B, A) -> B): B = this.ev().fold({ b }, { f(b, it) })
I think that's what confused me