You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					
						 | 
			1 year ago | |
|---|---|---|
| .. | ||
| README.md | 1 year ago | |
| go.mod | 1 year ago | |
| queue.go | 1 year ago | |
| recur.go | 1 year ago | |
| recur_test.go | 1 year ago | |
| set.go | 1 year ago | |
| stack.go | 1 year ago | |
		
			
				
				README.md
			
		
		
			
			
		
	
	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.