| Package | Description |
|---|---|
| com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
| com.gs.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| com.gs.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
| Modifier and Type | Method and Description |
|---|---|
<V> FastListMultimap<V,T> |
AbstractMutableList.groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
ArrayListAdapter.groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
ListAdapter.groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
RandomAccessListAdapter.groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
AbstractMutableList.groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
<V> FastListMultimap<V,T> |
ArrayListAdapter.groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
<V> FastListMultimap<V,T> |
ListAdapter.groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
<V> FastListMultimap<V,T> |
RandomAccessListAdapter.groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
| Modifier and Type | Method and Description |
|---|---|
FastListMultimap<K,V> |
FastListMultimap.newEmpty() |
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap() |
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(com.gs.collections.api.multimap.Multimap<? extends K,? extends V> multimap) |
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(com.gs.collections.api.tuple.Pair<K,V>... pairs) |
| Modifier and Type | Method and Description |
|---|---|
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupBy(java.util.ArrayList<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ListIterate.groupBy(java.util.List<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupBy(T[] array,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupByEach(java.util.ArrayList<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
ListIterate.groupByEach(java.util.List<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupByEach(T[] array,
com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
| Modifier and Type | Method and Description |
|---|---|
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupBy(java.lang.Iterable<T> iterable,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupBy(java.util.List<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupByEach(java.lang.Iterable<T> iterable,
com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupByEach(java.util.List<T> list,
com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |