Uses of Interface
groovyx.gpars.dataflow.stream.FList

Packages that use FList
groovyx.gpars.dataflow.stream   
 

Uses of FList in groovyx.gpars.dataflow.stream
 

Classes in groovyx.gpars.dataflow.stream that implement FList
 class DataflowStream<T>
          Represents a deterministic dataflow channel.
 

Fields in groovyx.gpars.dataflow.stream declared as FList
private  FList<T> FListIterator.current
           
 

Methods in groovyx.gpars.dataflow.stream that return FList
 FList<T> DataflowStream.filter(groovy.lang.Closure filterClosure)
          Builds a filtered stream using the supplied filter closure
 FList<T> FList.filter(groovy.lang.Closure filterClosure)
           
 FList<T> DataflowStream.getRest()
          Retrieves a DataflowStream representing the rest of this Stream after removing the first element
 FList<T> FList.getRest()
           
 FList<java.lang.Object> DataflowStream.map(groovy.lang.Closure mapClosure)
          Builds a modified stream using the supplied map closure
 FList<java.lang.Object> FList.map(groovy.lang.Closure mapClosure)
           
 

Methods in groovyx.gpars.dataflow.stream with parameters of type FList
private  void DataflowStream.map(FList<T> rest, groovy.lang.Closure mapClosure, DataflowStream result)
           
private  T DataflowStream.reduce(T current, FList<T> rest, groovy.lang.Closure reduceClosure)
           
 

Constructors in groovyx.gpars.dataflow.stream with parameters of type FList
FListIterator(FList<T> list)
           
 


Copyright © 2008–2010 Václav Pech. All Rights Reserved.