arrow-core / arrow.core.extensions.list.monad / kotlin.collections.List

Extensions for kotlin.collections.List

ap fun <A, B> List<A>.~~ap~~(arg1: List<(A) -> B>): List<B>
apTap fun <A, B> List<A>.~~apTap~~(arg1: List<B>): List<A>
effectM fun <A, B> List<A>.~~effectM~~(arg1: (A) -> Kind<ForListK, B>): List<A>
flatMap fun <A, B> List<A>.~~flatMap~~(arg1: (A) -> Kind<ForListK, B>): List<B>
flatTap fun <A, B> List<A>.~~flatTap~~(arg1: (A) -> Kind<ForListK, B>): List<A>
flatten fun <A> List<List<A>>.~~flatten~~(): List<A>
followedBy fun <A, B> List<A>.~~followedBy~~(arg1: List<B>): List<B>
followedByEval fun <A, B> List<A>.~~followedByEval~~(arg1: Eval<Kind<ForListK, B>>): List<B>
forEffect fun <A, B> List<A>.~~forEffect~~(arg1: List<B>): List<A>
forEffectEval fun <A, B> List<A>.~~forEffectEval~~(arg1: Eval<Kind<ForListK, B>>): List<A>
ifM fun <B> List<Boolean>.~~ifM~~(arg1: () -> Kind<ForListK, B>, arg2: () -> Kind<ForListK, B>): List<B>
map fun <A, B> List<A>.~~map~~(arg1: (A) -> B): List<B>
mproduct fun <A, B> List<A>.~~mproduct~~(arg1: (A) -> Kind<ForListK, B>): List<Tuple2<A, B>>
productL fun <A, B> List<A>.~~productL~~(arg1: List<B>): List<A>
productLEval fun <A, B> List<A>.~~productLEval~~(arg1: Eval<Kind<ForListK, B>>): List<A>
select fun <A, B> List<Either<A, B>>.~~select~~(arg1: List<(A) -> B>): List<B>
selectM fun <A, B> List<Either<A, B>>.~~selectM~~(arg1: List<(A) -> B>): List<B>

Do you like Arrow?

Arrow Org
<