java.lang.Object
de.renebergelt.quiterables.iterators.LazySelectIterable<TIn,TOut>
- Type Parameters:
TIn - Source type
TOut - Target type
- All Implemented Interfaces:
Iterable<TOut>
public class LazySelectIterable<TIn,TOut>
extends Object
implements Iterable<TOut>
Iterable which converts the elements of a source iterable of type TIn to
elements of type TOut using a Selector function
-
Constructor Summary
Constructors
Create a new lazy select iterable which wraps the given iterable
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
LazySelectIterable
Create a new lazy select iterable which wraps the given iterable
- Parameters:
_wrapped - The wrapped iterable
_selectorFunc - Function to transform elements of the original iterable
-