Uses of Class
com.github.andrewoma.dexx.collection.Pair

Packages that use Pair
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.hashmap   
com.github.andrewoma.dexx.collection.internal.redblack   
 

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

Methods in com.github.andrewoma.dexx.collection that return Pair
 Pair<K,V> SortedMap.first()
          Returns the first entry in the map or null if the map is empty.
 Pair<K,V> TreeMap.first()
           
 Pair<K,V> SortedMap.last()
          Returns the last entry in the map or null if the map is empty.
 Pair<K,V> TreeMap.last()
           
protected  Pair<Vector<E>,Vector<E>> Vector.splitAt(int n)
           
 

Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Pair
static
<K extends Comparable<? super K>,V>
Builder<Pair<K,V>,SortedMap<K,V>>
SortedMaps.builder()
           
static
<K,V> Builder<Pair<K,V>,Map<K,V>>
Maps.builder()
           
static
<K,V> Builder<Pair<K,V>,SortedMap<K,V>>
SortedMaps.builder(Comparator<? super K> comparator)
           
static
<K extends Comparable<? super K>,V>
BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,HashMap<K,V>>
HashMap.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,Map<K,V>>
Maps.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory(Comparator<? super K> comparator)
           
static
<K,V> BuilderFactory<Pair<K,V>,TreeMap<K,V>>
TreeMap.factory(Comparator<? super K> ordering, KeyFunction<K,V> keyFunction)
           
static
<K,V> BuilderFactory<Pair<K,V>,DerivedKeyHashMap<K,V>>
DerivedKeyHashMap.factory(KeyFunction<K,V> keyFunction)
           
 Iterator<Pair<K,V>> DerivedKeyHashMap.iterator()
           
 Iterator<Pair<K,V>> HashMap.iterator()
           
 Iterator<Pair<K,V>> TreeMap.iterator()
           
 

Methods in com.github.andrewoma.dexx.collection with parameters of type Pair
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Pair<K,V>[] pairs)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Pair<K,V>[] pairs)
           
static
<K,V> Map<K,V>
Maps.copyOf(Pair<K,V>[] pairs)
           
 

Method parameters in com.github.andrewoma.dexx.collection with type arguments of type Pair
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Iterable<Pair<K,V>> iterable)
           
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Iterator<Pair<K,V>> iterator)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Iterable<Pair<K,V>> iterable)
           
static
<K,V> Map<K,V>
Maps.copyOf(Iterable<Pair<K,V>> iterable)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Iterator<Pair<K,V>> iterator)
           
static
<K,V> Map<K,V>
Maps.copyOf(Iterator<Pair<K,V>> iterator)
           
static
<K,V> SortedMap<K,V>
SortedMaps.copyOfTraversable(Comparator<? super K> comparator, Traversable<Pair<K,V>> traversable)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOfTraversable(Traversable<Pair<K,V>> traversable)
           
static
<K,V> Map<K,V>
Maps.copyOfTraversable(Traversable<Pair<K,V>> traversable)
           
<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 Pair in com.github.andrewoma.dexx.collection.internal.hashmap
 

Methods in com.github.andrewoma.dexx.collection.internal.hashmap that return types with arguments of type Pair
static
<K,V> BuilderFactory<Pair<K,V>,ListMap<K,V>>
ListMap.factory()
           
 Iterator<Pair<K,V>> ListMap.iterator()
           
 Iterator<Pair<K,V>> CompactHashMap.iterator(KeyFunction<K,V> kf)
           
 

Methods in com.github.andrewoma.dexx.collection.internal.hashmap with parameters of type Pair
protected  CompactHashMap<K,V> CompactHashMap.updated0(K key, int hash, int level, V value, Pair<K,V> kv, KeyFunction<K,V> keyFunction)
           
 

Method parameters in com.github.andrewoma.dexx.collection.internal.hashmap with type arguments of type Pair
<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 Pair in com.github.andrewoma.dexx.collection.internal.redblack
 

Methods in com.github.andrewoma.dexx.collection.internal.redblack that return types with arguments of type Pair
 Iterator<Pair<K,V>> RedBlackTree.iterator(Tree<K,V> tree)
           
 

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



Copyright © 2014. All Rights Reserved.