-
Notifications
You must be signed in to change notification settings - Fork 137
Home
John McClean edited this page Jul 5, 2018
·
247 revisions
This is a work in progress. For cyclops-react 2 wiki see here
Add cyclops X as a dependency to your project
compile 'com.oath.cyclops:cyclops:x.y.z'
The cyclops.data package contains a range of persistent (immutable shared memory) collections.
- Seq - a persistent linked list
- NonEmptyList - a persistent linked list with a least one value
- LazySeq - a lazy persistent linked list (like Stream in Scala or Vavr)
- IntMap - a persistent 'arraylist' type list backed by a PatriciaTrie
- Vector - a persistent 'arraylist' type list backed by a bit mapped array trie
- LazyString
- HList
- Zipper
- DifferenceList
- HashSet
- TrieSet
- Bag
- TreeSet
- BankersQueue
- HashMap
- LinkedMap
- TreeMap
- DMap
- Range - represents an unconstrained generic (T) range of values
- Enumeration - represents an unconstrained reversible path through a generic (T) sequence of values
- DIET - Discrete Interval Encoded Tree
oops - my bad