sequenceValidated

Deprecated

sequenceValidated is being renamed to sequence to simplify the Arrow API

Replace with

import arrow.core.sequence
sequence()

fun <K, E, A> Map<K, Validated<E, A>>.sequenceValidated(semigroup: Semigroup<E>): Validated<E, Map<K, A>>

Deprecated

sequenceValidated is being renamed to sequence to simplify the Arrow API

Replace with

import arrow.core.sequence
sequence(semigroup)

Deprecated

sequenceValidated is being renamed to sequence to simplify the Arrow API

Replace with

import arrow.core.sequence
sequence(semigroup).map { it.asSequence() }