| Interface | Description |
|---|---|
| Hash<K,V> |
Elegant supplement for Map in JDK
|
| MutableHash<K,V> |
An interface extending
Hash (which is immutable), with additional in-place methods to change the hash itself. |
| MutableSeq<T> |
An interface extending
Seq (which is immutable), with additional in-place methods to change the seq itself. |
| Seq<T> |
Elegant supplement for List in JDK
|
| Class | Description |
|---|---|
| CharSeq |
Elegant supplement for String in JDK
|
| Hashes |
Factory class for construct Hash and MutableHash
|
| Range<C extends java.lang.Comparable<C>> |
Range is an element generator on the basis of start point,
end point and next element function.
|
| Seqs |
Factory class for construct Seq and MutableSeq
|