Class LazyConcatIterable<T>

java.lang.Object
de.renebergelt.quiterables.iterators.LazyConcatIterable<T>
Type Parameters:
T - Type of the elements in this Iterable
All Implemented Interfaces:
Iterable<T>

public class LazyConcatIterable<T> extends Object implements Iterable<T>
Iterable which concatenates two other iterables
Author:
René Bergelt
  • Constructor Details

    • LazyConcatIterable

      public LazyConcatIterable(Iterable<T> _it1, Iterable<T> _it2)
      Create an iterable which concats the two given iterables
      Parameters:
      _it1 - First iterable
      _it2 - Second iterable
  • Method Details