java.lang.Object
com.vladsch.flexmark.experimental.util.collection.iteration.MappingIterable<T,R>
All Implemented Interfaces:
Iterable<R>

public class MappingIterable<T,R> extends Object implements Iterable<R>
  • Field Details

    • myIterable

      @NotNull private final @NotNull Iterable<T> myIterable
    • myFunction

      @NotNull private final @NotNull Function<T,R> myFunction
  • Constructor Details

    • MappingIterable

      public MappingIterable(@NotNull @NotNull Iterable<T> iterable, @NotNull @NotNull Function<T,R> function)
  • Method Details