elliotchance / orderedmap

🔃 An ordered map in Go with amortized O(1) for Set, Get, Delete and Len.
MIT License
817 stars 62 forks source link

docs: add implementation details #22

Closed emirot closed 2 years ago

emirot commented 2 years ago

I looked at the code to better understand the implementation, I think it could be useful to mentioned that it's using internally the composite type map and linked list from standard lib. Or maybe rewording it differently, just a suggestion.


This change is Reviewable