Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Useful Golang Packages
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Data Structure
- github.com/deckarep/golang-set provides a hashset implementation (which is missing in the Golang standard library) .
Database
- gorm.io/gorm is a fantastic ORM library for Golang, aims to …
Set in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
Golang does NOT have sets natively. github.com/deckarep/golang-set is a popular 3rd-party set implementation.
Map in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
- Please refer to Ordered Map in Golang for discussions on ordered maps in Golang.
Manipulate Filesystem in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!