Uses of Interface
org.midheaven.collections.Traversable
Packages that use Traversable
-
Uses of Traversable in org.midheaven.collections
Methods in org.midheaven.collections that return TraversableModifier and TypeMethodDescriptiondefault Traversable<T> Traversable.concat(Traversable<T> other) Performs concat.static <S> Traversable<S> Traversable.empty()Returns an empty instance.default <R> Traversable<R> Traversable.flatMap(Function<T, Traversable<R>> mapper) Performs flatMap.static <S> Traversable<S> Creates an instance from the provided source.static <S> Traversable<S> Creates an instance from the provided source.static <S> Traversable<S> Traversable.from(Enumerable<S> enumerable) Creates an instance from the provided source.static <S> Traversable<S> Traversable.from(S first, S... others) Creates an instance from the provided source.default <R> Traversable<R> Performs map.default <O,R> Traversable <R> Traversable.zip(Traversable<O> other, BiFunction<T, O, R> zipper) Performs zip.Methods in org.midheaven.collections with parameters of type TraversableModifier and TypeMethodDescriptiondefault Traversable<T> Traversable.concat(Traversable<T> other) Performs concat.default <O,R> Traversable <R> Traversable.zip(Traversable<O> other, BiFunction<T, O, R> zipper) Performs zip.Method parameters in org.midheaven.collections with type arguments of type TraversableModifier and TypeMethodDescriptiondefault <R> Traversable<R> Traversable.flatMap(Function<T, Traversable<R>> mapper) Performs flatMap.