```suspend fun bla(): Either<SomeError, Result&...
# arrow
p
Copy code
suspend fun bla(): Either<SomeError, Result> = Either.fx {
  val ble = somethingWithEither().bind()
  somethingElse(ble)
}
k
Can you share a link to where bind is explained better in the docs?
It's difficult to search for