| Package | Description |
|---|---|
| org.organicdesign.fp |
A data definition language, and other tools for writing functional Java.
|
| 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 | Class and Description |
|---|---|
static class |
FunctionUtils.UnmodifiableSortedMap<K,V>
Wraps a sorted map.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,U> UnmodSortedMap<T,U> |
FunctionUtils.emptyUnmodSortedMap()
Returns an empty unmodifiable sorted map.
|
UnmodSortedMap<K,V> |
FunctionUtils.UnmodifiableSortedMap.subMap(K fromKey,
K toKey) |
UnmodSortedMap<K,V> |
FunctionUtils.UnmodifiableSortedMap.tailMap(K fromKey) |
static <K,V> UnmodSortedMap<K,V> |
FunctionUtils.unmodSortedMap(SortedMap<K,V> map)
Returns an unmodifiable version of the given sorted map.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImSortedMap<K,V>
An immutable sorted map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PersistentTreeMap<K,V>
Persistent Red Black Tree.
|
| Modifier and Type | Method and Description |
|---|---|
default UnmodSortedMap<K,V> |
UnmodSortedMap.headMap(K toKey) |
UnmodSortedMap<K,V> |
UnmodSortedMap.subMap(K fromKey,
K toKey) |
UnmodSortedMap<K,V> |
UnmodSortedMap.tailMap(K fromKey) |
Copyright © 2017. All rights reserved.