arrow-core / arrow.core.extensions / NonEmptyListTraverse
interface ~~NonEmptyListTraverse~~ : Traverse<ForNonEmptyList>
Deprecated: Traverse typeclass is deprecated and will be removed in 0.13.0. Use concrete methods on NonEmptyList.
foldLeft | open fun <A, B> NonEmptyListOf<A>.foldLeft(b: B, f: (B, A) -> B): B |
foldRight | open fun <A, B> NonEmptyListOf<A>.foldRight(lb: Eval<B>, f: (A, Eval<B>) -> Eval<B>): Eval<B> |
isEmpty | open fun <A> NonEmptyListOf<A>.isEmpty(): Boolean |
map | open fun <A, B> NonEmptyListOf<A>.map(f: (A) -> B): NonEmptyList<B> |
traverse | open fun <G, A, B> NonEmptyListOf<A>.traverse(AP: Applicative<G>, f: (A) -> Kind<G, B>): Kind<G, NonEmptyList<B>> |
Do you like Arrow?
✖