learn_golang/datastructures/README.md

344 B

Basic Data Structures

These are basic implementations of standard data structures. They are not thread safe implementations. To avoid race conditions you would need to use a mutex (mutual exclusion lock) to lock the data structure before any reads or writes. The sync package has a RWMutex that can be used.

Example of using Mutex