Uses of Interface
org.glassfish.pfl.basic.func.UnaryFunction

Packages that use UnaryFunction
org.glassfish.pfl.basic.algorithm   
org.glassfish.pfl.basic.func   
 

Uses of UnaryFunction in org.glassfish.pfl.basic.algorithm
 

Subinterfaces of UnaryFunction in org.glassfish.pfl.basic.algorithm
static interface Graph.Finder<E>
          A Finder finds the immediate successors of an element of the graph.
 

Methods in org.glassfish.pfl.basic.algorithm that return UnaryFunction
static
<A,R> UnaryFunction<A,R>
Algorithms.mapToFunction(Map<A,R> map)
           
 

Methods in org.glassfish.pfl.basic.algorithm with parameters of type UnaryFunction
static
<S,T> List<T>
Algorithms.flatten(List<S> list, UnaryFunction<S,List<T>> map)
          Flatten the results of applying map to list into a list of T.
static
<A,R> void
Algorithms.map(Collection<A> arg, Collection<R> result, UnaryFunction<A,R> func)
           
static
<A,R> List<R>
Algorithms.map(List<A> arg, UnaryFunction<A,R> func)
           
static
<K,A,R> Map<K,R>
Algorithms.map(Map<K,A> arg, UnaryFunction<A,R> func)
           
 

Uses of UnaryFunction in org.glassfish.pfl.basic.func
 

Classes in org.glassfish.pfl.basic.func that implement UnaryFunction
 class UnaryFunctionBase<S,R>
           
 



Copyright © 2013 Oracle. All Rights Reserved.