# README
go-datastructures
A set of generic data structures with mutex locking.
- LList - generic doubly linked list implementation
- List - generic doubly linked list implementation without mutex
- Map - generic hashmap implementation
- Set - generic set implementation
- Heap - generic heap implementation
- LRU - generic map based cache with Least Recently Used eviction policy