Class MappingIterable<T,R>
- java.lang.Object
-
- com.vladsch.flexmark.experimental.util.collection.iteration.MappingIterable<T,R>
-
- All Implemented Interfaces:
java.lang.Iterable<R>
public class MappingIterable<T,R> extends java.lang.Object implements java.lang.Iterable<R>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
MappingIterable.MyIterator<E,V>
-
Field Summary
Fields Modifier and Type Field Description private @NotNull java.util.function.Function<T,R>
myFunction
private @NotNull java.lang.Iterable<T>
myIterable
-
Constructor Summary
Constructors Constructor Description MappingIterable(@NotNull java.lang.Iterable<T> iterable, @NotNull java.util.function.Function<T,R> function)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull java.util.Iterator<R>
iterator()
-