Package | Description |
---|---|
propel.core.collections.maps.avl | |
propel.core.utils |
Constructor and Description |
---|
KeyCollection(AvlHashtable<TKey,TValue> dictionary,
java.lang.Class<?> genericTypeParameterKey)
Initializes with a new key collection.
|
ValueCollection(AvlHashtable<TKey,TValue> dictionary,
java.lang.Class<?> genericTypeParameterValue)
Initializes with a new value collection.
|
Modifier and Type | Method and Description |
---|---|
static <T,TKey extends java.lang.Comparable<TKey>,TValue> |
Linq.toAvlHashtable(java.lang.Iterable<T> values,
Functions.Function1<T,TKey> keySelector,
Functions.Function1<T,TValue> valueSelector)
Converts a sequence of items into a key/value AVL tree.
|
static <T,TKey extends java.lang.Comparable<TKey>,TValue> |
Linq.toAvlHashtable(T[] values,
Functions.Function1<T,TKey> keySelector,
Functions.Function1<T,TValue> valueSelector)
Converts a sequence of items into a key/value AVL hashtable.
|