brique
Experimentation of immutable data structures in scala
Goals
- Provide safe and functional data structures
- Efficient implementations with reliable benchmark against std collection
Which data structures do you plan to implement?
- List
- Option
- Map e.g.
LongMap
, OrdMap
, HashMap
- Queue e.g.
Heap
, PriorityQueue
, PrioritySearchQueue
Inspiration
- Purely Functional Data Structures of Chris Okasaki
- scalaz
- haskell base