Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aacebo/std

a library that exposes popular data structures and utilities
https://github.com/aacebo/std

Last synced: about 2 months ago
JSON representation

a library that exposes popular data structures and utilities

Awesome Lists containing this project

README

        

# Golang Standard Library

a library that exposes popular data structures and utilities.

## Roadmap

| Name | Description | |
|------------|-----------------------|-------|
| Queue | FIFO | [x] |
| PQueue | | [x] |
| Map Set | Key / Value | [x] |
| LRUCache | Least Recently Used | [ ] |
| LFUCache | Least Frequently Used | [ ] |
| Tree | | [ ] |
| Graph | | [ ] |
| Set | | [x] |
| List | Doubly Linked List | [x] |
| Array | | [x] |