# Packages
Package types just provides input types to the set generator.
# Functions
ByteKeySet creates a Byte from a keys of a map[byte](? extends interface{}).
No description provided by the author
Int64KeySet creates a Int64 from a keys of a map[int64](? extends interface{}).
IntKeySet creates a Int from a keys of a map[int](? extends interface{}).
New creates a Byte from a list of values.
New creates a Int from a list of values.
New creates a Int64 from a list of values.
New creates a String from a list of values.
StringKeySet creates a String from a keys of a map[string](? extends interface{}).
# Structs
Empty is public since it is used by some internal API objects for conversions between external string arrays and internal sets, and conversion logic requires public types today.
# Type aliases
sets.Byte is a set of bytes, implemented via map[byte]struct{} for minimal memory consumption.
sets.Int is a set of ints, implemented via map[int]struct{} for minimal memory consumption.
sets.Int64 is a set of int64s, implemented via map[int64]struct{} for minimal memory consumption.
sets.String is a set of strings, implemented via map[string]struct{} for minimal memory consumption.