FpdartTraversableIterable<T> extension
- on
-
- Iterable<
T>
- Iterable<
Methods
-
traverseEither<
E, B> (Either< E, B> f(T a)) → Either<E, List< B> > -
Available on Iterable<
Map each element in the list to an Either using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anEither<E, List<B>>
. -
traverseEitherWithIndex<
E, B> (Either< E, B> f(T a, int i)) → Either<E, List< B> > -
Available on Iterable<
Map each element in the list to an Either using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anEither<E, List<B>>
. -
traverseIO<
B> (IO< B> f(T a)) → IO<List< B> > -
Available on Iterable<
Map each element in the list to an IO using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIO<List<B>>
. -
traverseIOEither<
E, B> (IOEither< E, B> f(T a)) → IOEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a IOEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIOEither<E, List<B>>
. -
traverseIOEitherWithIndex<
E, B> (IOEither< E, B> f(T a, int i)) → IOEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a IOEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIOEither<E, List<B>>
. -
traverseIOOption<
B> (IOOption< B> f(T a)) → IOOption<List< B> > -
Available on Iterable<
Map each element in the list to a IOOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIOOption<List<B>>
. -
traverseIOOptionWithIndex<
B> (IOOption< B> f(T a, int i)) → IOOption<List< B> > -
Available on Iterable<
Map each element in the list to a IOOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIOOption<List<B>>
. -
traverseIOWithIndex<
B> (IO< B> f(T a, int i)) → IO<List< B> > -
Available on Iterable<
Map each element in the list to an IO using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anIO<List<B>>
. -
traverseOption<
B> (Option< B> f(T a)) → Option<List< B> > -
Available on Iterable<
Map each element in the list to an Option using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anOption<List<B>>
. -
traverseOptionWithIndex<
B> (Option< B> f(T a, int i)) → Option<List< B> > -
Available on Iterable<
Map each element in the list to an Option using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anOption<List<B>>
. -
traverseState<
S, B> (State< S, B> f(T a)) → State<S, List< B> > -
Available on Iterable<
Map each element in the list to a State using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in aState<S, List<B>>
. -
traverseStateWithIndex<
S, B> (State< S, B> f(T a, int i)) → State<S, List< B> > -
Available on Iterable<
Map each element in the list to a State using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in aState<S, List<B>>
. -
traverseTask<
B> (Task< B> f(T a)) → Task<List< B> > -
Available on Iterable<
Map each element in the list to a Task using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTask<List<B>>
. -
traverseTaskEither<
E, B> (TaskEither< E, B> f(T a)) → TaskEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a TaskEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskEither<E, List<B>>
. -
traverseTaskEitherSeq<
E, B> (TaskEither< E, B> f(T a)) → TaskEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a TaskEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskEither<E, List<B>>
. -
traverseTaskEitherWithIndex<
E, B> (TaskEither< E, B> f(T a, int i)) → TaskEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a TaskEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskEither<E, List<B>>
. -
traverseTaskEitherWithIndexSeq<
E, B> (TaskEither< E, B> f(T a, int i)) → TaskEither<E, List< B> > -
Available on Iterable<
Map each element in the list to a TaskEither using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskEither<E, List<B>>
. -
traverseTaskOption<
B> (TaskOption< B> f(T a)) → TaskOption<List< B> > -
Available on Iterable<
Map each element in the list to a TaskOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskOption<List<B>>
. -
traverseTaskOptionSeq<
B> (TaskOption< B> f(T a)) → TaskOption<List< B> > -
Available on Iterable<
Map each element in the list to a TaskOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskOption<List<B>>
. -
traverseTaskOptionWithIndex<
B> (TaskOption< B> f(T a, int i)) → TaskOption<List< B> > -
Available on Iterable<
Map each element in the list to a TaskOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskOption<List<B>>
. -
traverseTaskOptionWithIndexSeq<
B> (TaskOption< B> f(T a, int i)) → TaskOption<List< B> > -
Available on Iterable<
Map each element in the list to a TaskOption using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTaskOption<List<B>>
. -
traverseTaskSeq<
B> (Task< B> f(T a)) → Task<List< B> > -
Available on Iterable<
Map each element in the list to a Task using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTask<List<B>>
. -
traverseTaskWithIndex<
B> (Task< B> f(T a, int i)) → Task<List< B> > -
Available on Iterable<
Map each element in the list to a Task using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTask<List<B>>
. -
traverseTaskWithIndexSeq<
B> (Task< B> f(T a, int i)) → Task<List< B> > -
Available on Iterable<
Map each element in the list to a Task using the functionT> , provided by the FpdartTraversableIterable extensionf
, and collect the result in anTask<List<B>>
.