sequenceNullable

fun <A, B> Either<A, B?>.sequenceNullable(): Either<A, B>?

Deprecated

Prefer Kotlin nullable syntax inside either DSL, or replace with explicit fold

Replace with

import arrow.core.toOption
import arrow.core.right
import arrow.core.left
fold({ it.left() }, { it.orNull()?.right() }).toOption()

fun <A, B> Ior<A, B?>.sequenceNullable(): Ior<A, B>?

Deprecated

sequenceOption is being renamed to sequence to simplify the Arrow API

Replace with

import arrow.core.sequence
sequence()

Deprecated

sequenceNullable is being renamed to sequence to simplify the Arrow API

Replace with

import arrow.core.sequence
sequence()