Uses of Interface
net.anwiba.commons.lang.functional.IIterable
Packages that use IIterable
-
Uses of IIterable in net.anwiba.commons.lang.functional
Methods in net.anwiba.commons.lang.functional that return IIterable -
Uses of IIterable in net.anwiba.commons.lang.stream
Classes in net.anwiba.commons.lang.stream that implement IIterableModifier and TypeClassDescriptionfinal classIterableConvertingIterable<I,O, E extends Exception> classIterableCountingIterable<I,O, E extends Exception> final classIterableFilteringIterable<T,E extends Exception> final classIterableFlattingIterable<I,O, E extends Exception> final classJavaUtilIterableFilteringIterable<T,E extends Exception> Methods in net.anwiba.commons.lang.stream with parameters of type IIterableModifier and TypeMethodDescriptionStreams.of(Class<E> exceptionClass, IIterable<T, E> input, ICloseable<E> closeable) static <T> IStream<T,RuntimeException> Streams.of(IIterable<T, RuntimeException> input) Constructors in net.anwiba.commons.lang.stream with parameters of type IIterableModifierConstructorDescriptionIterableConvertingIterable(IIterable<I, E> input, IAcceptor<I> acceptor, IConverter<I, O, E> converter) IterableCountingIterable(IIterable<I, E> input, IAcceptor<I> acceptor, IAggregator<Integer, I, O, E> aggegator) IterableFlattingIterable(IIterable<I, E> input, IAcceptor<I> acceptor, IConverter<I, Iterable<O>, E> converter)