toIor

suspend fun <Error, A> Effect<Error, A>.toIor(): Ior<Error, A>(source)

Run the Effect by returning Ior.Right of A, or Ior.Left of Error.


Run the EagerEffect by returning Ior.Right of A, or Ior.Left of Error.