Uses of Interface
com.github.andrewoma.dexx.collection.Function
-
Packages that use Function Package Description 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 Modifier and Type Method Description <U> void
DerivedKeyHashMap. forEach(@NotNull Function<Pair<K,V>,U> f)
<U> void
HashMap. forEach(@NotNull Function<Pair<K,V>,U> f)
<U> void
HashSet. forEach(@NotNull Function<E,U> f)
<U> void
Traversable. forEach(@NotNull Function<E,U> f)
All collection methods can be built upon thisforEach
definition.<U> void
TreeMap. forEach(@NotNull Function<Pair<K,V>,U> f)
-
Uses of Function in com.github.andrewoma.dexx.collection.internal.base
Fields in com.github.andrewoma.dexx.collection.internal.base declared as Function Modifier and Type Field Description private Function<F,T>
MappedIterable. mapFunction
Methods in com.github.andrewoma.dexx.collection.internal.base with parameters of type Function Modifier and Type Method Description <U> void
AbstractIterable. forEach(@NotNull Function<E,U> f)
static <E,U>
voidIterables. forEach(java.lang.Iterable<E> iterable, Function<E,U> f)
Constructors in com.github.andrewoma.dexx.collection.internal.base with parameters of type Function Constructor Description 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 Modifier and Type Method Description <U> void
CompactHashMap. forEach(Function<Pair<K,V>,U> f, KeyFunction<K,V> keyFunction)
<U> void
HashMap1. forEach(Function<Pair<K,V>,U> f, KeyFunction<K,V> keyFunction)
<U> void
HashMapCollision1. forEach(Function<Pair<K,V>,U> f, KeyFunction<K,V> keyFunction)
<U> void
HashTrieMap. forEach(Function<Pair<K,V>,U> f, KeyFunction<K,V> keyFunction)
<U> void
ListMap. forEach(@NotNull Function<Pair<K,V>,U> f)
-
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 Modifier and Type Method Description <U> void
RedBlackTree. forEach(Tree<K,V> tree, Function<Pair<K,V>,U> f)
-