Skip navigation links
A B C E F G H I L M N P R S T U Z 

A

AbstractIterator<T> - Class in groovy.stream.iterators
 
AbstractIterator(Iterator<T>) - Constructor for class groovy.stream.iterators.AbstractIterator
 

B

BufferedReaderIterator - Class in groovy.stream.iterators
 
BufferedReaderIterator(BufferedReader) - Constructor for class groovy.stream.iterators.BufferedReaderIterator
 

C

call(T) - Method in interface groovy.stream.functions.Function
 
call(T, U) - Method in interface groovy.stream.functions.Function2
 
call(T, Integer) - Method in interface groovy.stream.functions.IndexedFunction
 
call(T, U, Integer) - Method in interface groovy.stream.functions.IndexedFunction2
 
call(T, Integer) - Method in interface groovy.stream.functions.IndexedPredicate
 
call(T) - Method in interface groovy.stream.functions.Predicate
 
callFilter() - Method in class groovy.stream.iterators.groovy.FilteringIterator
 
callFilter() - Method in class groovy.stream.iterators.java.FilteringIteratorForIndexedPredicate
 
callFilter() - Method in class groovy.stream.iterators.java.FilteringIteratorForPredicate
 
collate(int) - Method in class groovy.stream.Stream
Groups a the elements of a Stream into groups of length size.
collate(int, boolean) - Method in class groovy.stream.Stream
Groups a the elements of a Stream into groups of length size.
collate(int, int) - Method in class groovy.stream.Stream
Groups a the elements of a Stream into groups of length size using a step-size of step.
collate(int, int, boolean) - Method in class groovy.stream.Stream
Groups a the elements of a Stream into groups of length size using a step-size of step.
CollatingIterator<T> - Class in groovy.stream.iterators
 
CollatingIterator(Iterator<T>, int) - Constructor for class groovy.stream.iterators.CollatingIterator
 
CollatingIterator(Iterator<T>, int, int) - Constructor for class groovy.stream.iterators.CollatingIterator
 
CollatingIterator(Iterator<T>, int, boolean) - Constructor for class groovy.stream.iterators.CollatingIterator
 
CollatingIterator(Iterator<T>, int, int, boolean) - Constructor for class groovy.stream.iterators.CollatingIterator
 
concat(Iterator<? extends T>) - Method in class groovy.stream.Stream
Returns a new Stream which will iterate the elements in the current Stream, followed by the elements in the other Stream.
ConcatenationIterator<T> - Class in groovy.stream.iterators
 
ConcatenationIterator(Iterator<T>, Iterator<? extends T>) - Constructor for class groovy.stream.iterators.ConcatenationIterator
 
current - Variable in class groovy.stream.iterators.AbstractIterator
 

E

EmptyIterator<T> - Class in groovy.stream.iterators
 
EmptyIterator() - Constructor for class groovy.stream.iterators.EmptyIterator
 
EnumerationIterator<T> - Class in groovy.stream.iterators
 
EnumerationIterator(Enumeration<? extends T>) - Constructor for class groovy.stream.iterators.EnumerationIterator
 
every - Variable in class groovy.stream.iterators.groovy.TapIterator
 
exhausted - Variable in class groovy.stream.iterators.AbstractIterator
 

F

filter(Closure<Boolean>) - Method in class groovy.stream.Stream
Filter the current stream, passing each element through a predicate filter.
filter(Predicate<T>) - Method in class groovy.stream.Stream
Filter the current stream, passing each element through a predicate filter (Java friendly version).
FilteringIterator<T> - Class in groovy.stream.iterators.groovy
 
FilteringIterator(Iterator<T>, Closure<Boolean>, boolean) - Constructor for class groovy.stream.iterators.groovy.FilteringIterator
 
FilteringIteratorForIndexedPredicate<T> - Class in groovy.stream.iterators.java
 
FilteringIteratorForIndexedPredicate(Iterator<T>, IndexedPredicate<T>) - Constructor for class groovy.stream.iterators.java.FilteringIteratorForIndexedPredicate
 
FilteringIteratorForPredicate<T> - Class in groovy.stream.iterators.java
 
FilteringIteratorForPredicate(Iterator<T>, Predicate<T>) - Constructor for class groovy.stream.iterators.java.FilteringIteratorForPredicate
 
filterWithIndex(Closure<Boolean>) - Method in class groovy.stream.Stream
Filter the current stream, passing each element and it's index through a predicate filter.
filterWithIndex(IndexedPredicate<T>) - Method in class groovy.stream.Stream
Filter the current stream, passing each element and its index through a predicate filter (Java friendly version).
flatMap(Closure<? extends Collection<U>>) - Method in class groovy.stream.Stream
Takes a Closure that returns a Collection.
flatMap(Function<T, ? extends Collection<U>>) - Method in class groovy.stream.Stream
Takes a Function that returns a Collection.
FlatMapIterator<T,U> - Class in groovy.stream.iterators.groovy
 
FlatMapIterator(Iterator<T>, Closure<? extends Collection<U>>, boolean) - Constructor for class groovy.stream.iterators.groovy.FlatMapIterator
 
FlatMapIteratorForFunction<T,U> - Class in groovy.stream.iterators.java
 
FlatMapIteratorForFunction(Iterator<T>, Function<T, ? extends Collection<U>>) - Constructor for class groovy.stream.iterators.java.FlatMapIteratorForFunction
 
FlatMapIteratorForIndexedFunction<T,U> - Class in groovy.stream.iterators.java
 
FlatMapIteratorForIndexedFunction(Iterator<T>, IndexedFunction<T, ? extends Collection<U>>) - Constructor for class groovy.stream.iterators.java.FlatMapIteratorForIndexedFunction
 
flatMapWithIndex(Closure<? extends Collection<U>>) - Method in class groovy.stream.Stream
Takes a Closure that returns a Collection.
flatMapWithIndex(IndexedFunction<T, ? extends Collection<U>>) - Method in class groovy.stream.Stream
Takes an IndexedFunction that returns a Collection.
from(Map<K, ? extends Iterable<V>>) - Static method in class groovy.stream.Stream
Construct a Stream from a Map of Iterables.
from(Stream<T>) - Static method in class groovy.stream.Stream
Construct a Stream from another Stream.
from(Iterable<T>) - Static method in class groovy.stream.Stream
Construct a Stream from an Iterable.
from(Iterator<T>) - Static method in class groovy.stream.Stream
Construct a Stream from an Iterator.
from(BufferedReader) - Static method in class groovy.stream.Stream
Construct a Stream from a BufferedReader that iterates the lines in it.
from(ZipFile) - Static method in class groovy.stream.Stream
Construct a Stream from a ZipFile that iterates the ZipEntry objects contained within.
from(JarFile) - Static method in class groovy.stream.Stream
Construct a Stream from a JarFile that iterates the JarEntry objects contained within.
from(Closure<T>) - Static method in class groovy.stream.Stream
Construct a Stream that for every element, returns the result of calling the Closure.
from(T) - Static method in class groovy.stream.Stream
Construct a Stream that for every element, returns object.
from(T[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Object in an array.
from(byte[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every byte in an array.
from(char[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Character in an array.
from(short[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Short in an array.
from(int[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Integer in an array.
from(long[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Long in an array.
from(float[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Float in an array.
from(double[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Double in an array.
from(boolean[]) - Static method in class groovy.stream.Stream
Construct a Stream that iterates every Boolean in an array.
Function<T,S> - Interface in groovy.stream.functions
Describes a function which transforms a value of type T to one of type S.
Function2<T,U,S> - Interface in groovy.stream.functions
Describes a function which takes one value of type T and another of type U and transforms them to one of type S

G

getMappedValue(T) - Method in class groovy.stream.iterators.groovy.TransformingIterator
 
getMappedValue(T) - Method in class groovy.stream.iterators.java.TransformingIteratorForFunction
 
getMappedValue(T) - Method in class groovy.stream.iterators.java.TransformingIteratorForIndexedFunction
 
groovy.stream - package groovy.stream
 
groovy.stream.functions - package groovy.stream.functions
 
groovy.stream.iterators - package groovy.stream.iterators
 
groovy.stream.iterators.groovy - package groovy.stream.iterators.groovy
 
groovy.stream.iterators.java - package groovy.stream.iterators.java
 

H

hasNext() - Method in class groovy.stream.iterators.AbstractIterator
 
hasNext() - Method in class groovy.stream.iterators.BufferedReaderIterator
 
hasNext() - Method in class groovy.stream.iterators.EmptyIterator
 
hasNext() - Method in class groovy.stream.iterators.EnumerationIterator
 
hasNext() - Method in class groovy.stream.iterators.LimitedIterator
 
hasNext() - Method in class groovy.stream.iterators.RepeatingClosureIterator
 
hasNext() - Method in class groovy.stream.iterators.RepeatingIterator
 
hasNext() - Method in class groovy.stream.iterators.RepeatingObjectIterator
 
hasNext() - Method in class groovy.stream.Stream
 

I

index - Variable in class groovy.stream.iterators.groovy.FilteringIterator
 
index - Variable in class groovy.stream.iterators.groovy.FlatMapIterator
 
index - Variable in class groovy.stream.iterators.groovy.TapIterator
 
index - Variable in class groovy.stream.iterators.groovy.TransformingIterator
 
index - Variable in class groovy.stream.iterators.groovy.UntilIterator
 
index - Variable in class groovy.stream.iterators.groovy.ZipIterator
 
IndexedFunction<T,S> - Interface in groovy.stream.functions
Describes a function which takes a value of type T plus an Integer index, and returns a value of type S
IndexedFunction2<T,U,S> - Interface in groovy.stream.functions
Describes a function which takes one value of type T, another of type U and an Integer index, and returns a value of type S.
IndexedPredicate<T> - Interface in groovy.stream.functions
Given a value of type T and an Integer index, returns a boolean.
inputIterator - Variable in class groovy.stream.iterators.groovy.FlatMapIterator
 
inputIterator - Variable in class groovy.stream.iterators.groovy.TransformingIterator
 
iter1 - Variable in class groovy.stream.iterators.groovy.ZipIterator
 
iter2 - Variable in class groovy.stream.iterators.groovy.ZipIterator
 
iterator - Variable in class groovy.stream.iterators.AbstractIterator
 

L

LimitedIterator<T> - Class in groovy.stream.iterators
 
LimitedIterator(Iterator<T>, int) - Constructor for class groovy.stream.iterators.LimitedIterator
 
loaded - Variable in class groovy.stream.iterators.AbstractIterator
 
loadNext() - Method in class groovy.stream.iterators.AbstractIterator
 
loadNext() - Method in class groovy.stream.iterators.CollatingIterator
 
loadNext() - Method in class groovy.stream.iterators.ConcatenationIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.FilteringIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.FlatMapIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.TapIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.TransformingIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.UntilIterator
 
loadNext() - Method in class groovy.stream.iterators.groovy.ZipIterator
 
loadNext() - Method in class groovy.stream.iterators.MapIterator
 
loadNext() - Method in class groovy.stream.iterators.SkipIterator
 

M

map(Closure<U>) - Method in class groovy.stream.Stream
Maps the elements of a Stream to a new value as they are requested.
map(Function<T, U>) - Method in class groovy.stream.Stream
Maps the elements of a Stream to a new value as they are requested.
MapIterator<T,U> - Class in groovy.stream.iterators
 
MapIterator(Map<T, ? extends Iterable<U>>) - Constructor for class groovy.stream.iterators.MapIterator
 
mapWithIndex(Closure<U>) - Method in class groovy.stream.Stream
Maps the elements of a Stream to a new value as they are requested.
mapWithIndex(IndexedFunction<T, U>) - Method in class groovy.stream.Stream
Maps the elements of a Stream to a new value as they are requested.

N

next() - Method in class groovy.stream.iterators.AbstractIterator
 
next() - Method in class groovy.stream.iterators.BufferedReaderIterator
 
next() - Method in class groovy.stream.iterators.CollatingIterator
 
next() - Method in class groovy.stream.iterators.EmptyIterator
 
next() - Method in class groovy.stream.iterators.EnumerationIterator
 
next() - Method in class groovy.stream.iterators.groovy.TapIterator
 
next() - Method in class groovy.stream.iterators.LimitedIterator
 
next() - Method in class groovy.stream.iterators.RepeatingClosureIterator
 
next() - Method in class groovy.stream.iterators.RepeatingIterator
 
next() - Method in class groovy.stream.iterators.RepeatingObjectIterator
 
next() - Method in class groovy.stream.Stream
 

P

performCheck() - Method in class groovy.stream.iterators.groovy.UntilIterator
 
performCheck() - Method in class groovy.stream.iterators.java.UntilIteratorForIndexedPredicate
 
performCheck() - Method in class groovy.stream.iterators.java.UntilIteratorForPredicate
 
performMapping(T) - Method in class groovy.stream.iterators.groovy.FlatMapIterator
 
performMapping(T) - Method in class groovy.stream.iterators.java.FlatMapIteratorForFunction
 
performMapping(T) - Method in class groovy.stream.iterators.java.FlatMapIteratorForIndexedFunction
 
performTap(T) - Method in class groovy.stream.iterators.groovy.TapIterator
 
performTap(T) - Method in class groovy.stream.iterators.java.TapIteratorForFunction
 
performTap(T) - Method in class groovy.stream.iterators.java.TapIteratorForIndexedFunction
 
performZip(T, U) - Method in class groovy.stream.iterators.groovy.ZipIterator
 
performZip(T, U) - Method in class groovy.stream.iterators.java.ZipIteratorForFunction
 
performZip(T, U) - Method in class groovy.stream.iterators.java.ZipIteratorForIndexedFunction
 
Predicate<T> - Interface in groovy.stream.functions
Given a value of type T, returns a boolean.
pushback - Variable in class groovy.stream.iterators.groovy.FlatMapIterator
 

R

remove() - Method in class groovy.stream.iterators.AbstractIterator
 
remove() - Method in class groovy.stream.iterators.BufferedReaderIterator
 
remove() - Method in class groovy.stream.iterators.EmptyIterator
 
remove() - Method in class groovy.stream.iterators.EnumerationIterator
 
remove() - Method in class groovy.stream.iterators.LimitedIterator
 
remove() - Method in class groovy.stream.iterators.RepeatingClosureIterator
 
remove() - Method in class groovy.stream.iterators.RepeatingIterator
 
remove() - Method in class groovy.stream.iterators.RepeatingObjectIterator
 
remove() - Method in class groovy.stream.Stream
 
repeat() - Method in class groovy.stream.Stream
When this stream completes, repeat it's output endlessly.
repeat(int) - Method in class groovy.stream.Stream
This stream will repeat count times.
RepeatingClosureIterator<T> - Class in groovy.stream.iterators
 
RepeatingClosureIterator(Closure<T>) - Constructor for class groovy.stream.iterators.RepeatingClosureIterator
 
RepeatingIterator<T> - Class in groovy.stream.iterators
 
RepeatingIterator(Iterator<T>) - Constructor for class groovy.stream.iterators.RepeatingIterator
 
RepeatingIterator(Iterator<T>, Integer) - Constructor for class groovy.stream.iterators.RepeatingIterator
 
RepeatingObjectIterator<T> - Class in groovy.stream.iterators
 
RepeatingObjectIterator(T) - Constructor for class groovy.stream.iterators.RepeatingObjectIterator
 

S

setDelegate() - Method in class groovy.stream.iterators.groovy.FilteringIterator
 
setDelegate(T) - Method in class groovy.stream.iterators.groovy.FlatMapIterator
 
setDelegate(T) - Method in class groovy.stream.iterators.groovy.TransformingIterator
 
setDelegate() - Method in class groovy.stream.iterators.groovy.UntilIterator
 
setDelegate() - Method in class groovy.stream.iterators.java.FilteringIteratorForIndexedPredicate
 
setDelegate() - Method in class groovy.stream.iterators.java.FilteringIteratorForPredicate
 
setDelegate(T) - Method in class groovy.stream.iterators.java.FlatMapIteratorForFunction
 
setDelegate(T) - Method in class groovy.stream.iterators.java.FlatMapIteratorForIndexedFunction
 
setDelegate(T) - Method in class groovy.stream.iterators.java.TransformingIteratorForFunction
 
setDelegate(T) - Method in class groovy.stream.iterators.java.TransformingIteratorForIndexedFunction
 
setDelegate() - Method in class groovy.stream.iterators.java.UntilIteratorForIndexedPredicate
 
setDelegate() - Method in class groovy.stream.iterators.java.UntilIteratorForPredicate
 
skip(int) - Method in class groovy.stream.Stream
Skip n elements.
SkipIterator<T> - Class in groovy.stream.iterators
 
SkipIterator(Iterator<T>, int) - Constructor for class groovy.stream.iterators.SkipIterator
 
Stream<T> - Class in groovy.stream
 
StreamExtension - Class in groovy.stream
 

T

take(int) - Method in class groovy.stream.Stream
Limits the Stream to n elements.
tap(Closure<Void>) - Method in class groovy.stream.Stream
Inspect every value in the Stream and pass it on unmodified.
tap(Function<T, Void>) - Method in class groovy.stream.Stream
Inspect every value in the Stream and pass it on.
tapEvery(int, Closure<Void>) - Method in class groovy.stream.Stream
Inspect the every nth value in the Stream and pass it on unmodified.
tapEvery(int, Function<T, Void>) - Method in class groovy.stream.Stream
Inspect the every nth value in the Stream and pass it on.
tapEveryWithIndex(int, Closure<Void>) - Method in class groovy.stream.Stream
Inspect the every nth value in the Stream with its index and pass it on unmodified.
tapEveryWithIndex(int, IndexedFunction<T, Void>) - Method in class groovy.stream.Stream
Inspect the every nth value in the Stream with its index and pass it on unmodified.
TapIterator<T> - Class in groovy.stream.iterators.groovy
 
TapIterator(Iterator<T>, int, boolean, Closure<Void>) - Constructor for class groovy.stream.iterators.groovy.TapIterator
 
TapIteratorForFunction<T> - Class in groovy.stream.iterators.java
 
TapIteratorForFunction(Iterator<T>, Function<T, Void>) - Constructor for class groovy.stream.iterators.java.TapIteratorForFunction
 
TapIteratorForFunction(Iterator<T>, int, Function<T, Void>) - Constructor for class groovy.stream.iterators.java.TapIteratorForFunction
 
TapIteratorForIndexedFunction<T> - Class in groovy.stream.iterators.java
 
TapIteratorForIndexedFunction(Iterator<T>, IndexedFunction<T, Void>) - Constructor for class groovy.stream.iterators.java.TapIteratorForIndexedFunction
 
TapIteratorForIndexedFunction(Iterator<T>, int, IndexedFunction<T, Void>) - Constructor for class groovy.stream.iterators.java.TapIteratorForIndexedFunction
 
tapWithIndex(Closure<Void>) - Method in class groovy.stream.Stream
Inspect every value in the Stream with its index and pass it on unmodified.
tapWithIndex(IndexedFunction<T, Void>) - Method in class groovy.stream.Stream
Inspect every value in the Stream with its index and pass it on unmodified.
toStream(Closure<T>) - Static method in class groovy.stream.StreamExtension
 
toStream(Iterator<T>) - Static method in class groovy.stream.StreamExtension
 
toStream(Iterable<T>) - Static method in class groovy.stream.StreamExtension
 
toStream(BufferedReader) - Static method in class groovy.stream.StreamExtension
 
toStream(Map<K, ? extends Iterable<V>>) - Static method in class groovy.stream.StreamExtension
 
toStream(T[]) - Static method in class groovy.stream.StreamExtension
 
toStream(byte[]) - Static method in class groovy.stream.StreamExtension
 
toStream(char[]) - Static method in class groovy.stream.StreamExtension
 
toStream(short[]) - Static method in class groovy.stream.StreamExtension
 
toStream(int[]) - Static method in class groovy.stream.StreamExtension
 
toStream(long[]) - Static method in class groovy.stream.StreamExtension
 
toStream(float[]) - Static method in class groovy.stream.StreamExtension
 
toStream(double[]) - Static method in class groovy.stream.StreamExtension
 
toStream(boolean[]) - Static method in class groovy.stream.StreamExtension
 
toStream(ZipFile) - Static method in class groovy.stream.StreamExtension
 
toStream(JarFile) - Static method in class groovy.stream.StreamExtension
 
TransformingIterator<T,U> - Class in groovy.stream.iterators.groovy
 
TransformingIterator(Iterator<T>, Closure<U>, boolean) - Constructor for class groovy.stream.iterators.groovy.TransformingIterator
 
TransformingIteratorForFunction<T,U> - Class in groovy.stream.iterators.java
 
TransformingIteratorForFunction(Iterator<T>, Function<T, U>) - Constructor for class groovy.stream.iterators.java.TransformingIteratorForFunction
 
TransformingIteratorForIndexedFunction<T,U> - Class in groovy.stream.iterators.java
 
TransformingIteratorForIndexedFunction(Iterator<T>, IndexedFunction<T, U>) - Constructor for class groovy.stream.iterators.java.TransformingIteratorForIndexedFunction
 

U

until(Closure<Boolean>) - Method in class groovy.stream.Stream
When the Closure predicate returns true, the stream is stopped.
until(Predicate<T>) - Method in class groovy.stream.Stream
When the Predicate returns true, the stream is stopped.
UntilIterator<T> - Class in groovy.stream.iterators.groovy
 
UntilIterator(Iterator<T>, Closure<Boolean>, boolean) - Constructor for class groovy.stream.iterators.groovy.UntilIterator
 
UntilIteratorForIndexedPredicate<T> - Class in groovy.stream.iterators.java
 
UntilIteratorForIndexedPredicate(Iterator<T>, IndexedPredicate<T>) - Constructor for class groovy.stream.iterators.java.UntilIteratorForIndexedPredicate
 
UntilIteratorForPredicate<T> - Class in groovy.stream.iterators.java
 
UntilIteratorForPredicate(Iterator<T>, Predicate<T>) - Constructor for class groovy.stream.iterators.java.UntilIteratorForPredicate
 
untilWithIndex(Closure<Boolean>) - Method in class groovy.stream.Stream
Calls the Closure predicate with the current element and the index in the stream.
untilWithIndex(IndexedPredicate<T>) - Method in class groovy.stream.Stream
Calls the IndexedPredicate with the current element and the index in the stream.

Z

zip(Iterator<U>, Closure<V>) - Method in class groovy.stream.Stream
Takes another Iterator or Stream and calls the two arg Closure to zip the two together.
zip(Iterable<U>, Closure<V>) - Method in class groovy.stream.Stream
 
zip(Iterator<U>, Function2<T, U, V>) - Method in class groovy.stream.Stream
Takes another Iterator or Stream and calls the two arg Function2 to zip the two together.
zip(Iterable<U>, Function2<T, U, V>) - Method in class groovy.stream.Stream
 
ZipIterator<T,U,V> - Class in groovy.stream.iterators.groovy
 
ZipIterator(Iterator<T>, Iterator<U>, boolean, Closure<V>) - Constructor for class groovy.stream.iterators.groovy.ZipIterator
 
ZipIteratorForFunction<T,U,V> - Class in groovy.stream.iterators.java
 
ZipIteratorForFunction(Iterator<T>, Iterator<U>, Function2<T, U, V>) - Constructor for class groovy.stream.iterators.java.ZipIteratorForFunction
 
ZipIteratorForIndexedFunction<T,U,V> - Class in groovy.stream.iterators.java
 
ZipIteratorForIndexedFunction(Iterator<T>, Iterator<U>, IndexedFunction2<T, U, V>) - Constructor for class groovy.stream.iterators.java.ZipIteratorForIndexedFunction
 
zipWithIndex(Iterator<U>, Closure<V>) - Method in class groovy.stream.Stream
Takes another Iterator or Stream and calls the three arg Closure to zip the two together along with the current index.
zipWithIndex(Iterable<U>, Closure<V>) - Method in class groovy.stream.Stream
 
zipWithIndex(Iterator<U>, IndexedFunction2<T, U, V>) - Method in class groovy.stream.Stream
Takes another Iterator or Stream and calls the three arg IndexedFunction2 to zip the two together along with the current index.
zipWithIndex(Iterable<U>, IndexedFunction2<T, U, V>) - Method in class groovy.stream.Stream
 
A B C E F G H I L M N P R S T U Z 
Skip navigation links