arrow-core / arrow.core.extensions / arrow.Kind / traverse
fun <G, A, B, C> EitherOf<A, B>.~~traverse~~(GA: Applicative<G>, f: (B) -> Kind<G, C>): Kind<G, Either<A, C>>
Deprecated: traverse with Applicative has been deprecated, use the concretely defined traverse or traverseValidated on Either
fun <A, G, B> OptionOf<A>.~~traverse~~(GA: Applicative<G>, f: (A) -> Kind<G, B>): Kind<G, Option<B>>
Deprecated: Applicative typeclass is deprecated, Replace with traverse, traverseEither or traverseValidated from arrow.core.*
fun <F, G, A, B> Tuple2Of<F, A>.~~traverse~~(GA: Applicative<G>, f: (A) -> Kind<G, B>): Kind<G, Tuple2<F, B>>
Deprecated: Tuple2 is deprecated in favor of Kotlin’s Pair
Do you like Arrow?
✖