Uses of Interface
com.github.andrewoma.dexx.collection.Function

Packages that use Function
com.github.andrewoma.dexx.collection Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java. 
com.github.andrewoma.dexx.collection.internal.base   
com.github.andrewoma.dexx.collection.internal.hashmap   
com.github.andrewoma.dexx.collection.internal.redblack   
 

Uses of Function in com.github.andrewoma.dexx.collection
 

Methods in com.github.andrewoma.dexx.collection with parameters of type Function
<U> void
HashSet.forEach(Function<E,U> f)
           
<U> void
Traversable.forEach(Function<E,U> f)
          All collection methods can be built upon this forEach definition.
<U> void
DerivedKeyHashMap.forEach(Function<Pair<K,V>,U> f)
           
<U> void
HashMap.forEach(Function<Pair<K,V>,U> f)
           
<U> void
TreeMap.forEach(Function<Pair<K,V>,U> f)
           
 

Uses of Function in com.github.andrewoma.dexx.collection.internal.base
 

Methods in com.github.andrewoma.dexx.collection.internal.base with parameters of type Function
<U> void
AbstractIterable.forEach(Function<E,U> f)
           
static
<E,U> void
Iterables.forEach(Iterable<E> iterable, Function<E,U> f)
           
 

Constructors in com.github.andrewoma.dexx.collection.internal.base with parameters of type Function
MappedIterable(Iterable<F> from, Function<F,T> mapFunction)
           
 

Uses of Function in com.github.andrewoma.dexx.collection.internal.hashmap
 

Methods in com.github.andrewoma.dexx.collection.internal.hashmap with parameters of type Function
<U> void
ListMap.forEach(Function<Pair<K,V>,U> f)
           
<U> void
CompactHashMap.forEach(Function<Pair<K,V>,U> f, KeyFunction<K,V> keyFunction)
           
 

Uses of Function in com.github.andrewoma.dexx.collection.internal.redblack
 

Methods in com.github.andrewoma.dexx.collection.internal.redblack with parameters of type Function
<U> void
RedBlackTree.forEach(Tree<K,V> tree, Function<Pair<K,V>,U> f)
           
 



Copyright © 2014. All Rights Reserved.