package
0.6.0
Repository: https://github.com/chenmingyong0423/gkit.git
Documentation: pkg.go.dev

# Functions

NewMapSet returns a new MapSet with the given initial capacity.

# Structs

MapSet 使用一个 map 来实现 set 功能,map 的 value 使用一个空 struct 来占位 MapSet is a generic set implementation using a map[T]struct{} to store the set elements.