| Package | Description |
|---|---|
| org.organicdesign.fp.collections |
Type-safe versions of the immutable Clojure collections, plus unmodifiable and immutable
collection interfaces that extend the java.util collections, deprecating the mutate-in-place
methods (Unmod____) and adding methods that return a new, immutable, modified version of the
collection (Im____).
|
| Modifier and Type | Field and Description |
|---|---|
static PersistentHashSet<Object> |
PersistentHashSet.EMPTY |
| Modifier and Type | Method and Description |
|---|---|
static <E> PersistentHashSet<E> |
PersistentHashSet.empty() |
static <E> PersistentHashSet<E> |
PersistentHashSet.empty(Equator<E> eq) |
PersistentHashSet<E> |
PersistentHashSet.MutableHashSet.immutable() |
static <E> PersistentHashSet<E> |
PersistentHashSet.of(Iterable<E> elements)
Returns a new PersistentHashSet of the values.
|
static <E> PersistentHashSet<E> |
PersistentHashSet.ofEq(Equator<E> eq,
Iterable<E> init) |
static <E> PersistentHashSet<E> |
PersistentHashSet.ofMap(ImUnsortedMap<E,?> map) |
PersistentHashSet<E> |
PersistentHashSet.put(E o) |
PersistentHashSet<E> |
PersistentHashSet.without(E key) |
Copyright © 2017. All rights reserved.