``` x.canThrow() x.operation() // guarantee to su...
# stdlib
c
Copy code
x.canThrow()
x.operation()  // guarantee to succeed, otherwise would have thrown
vs
Copy code
val t = Try<...>
t.flatMap { it.operation() }
t.flatMap { it.operation2() }