Documentation
Overview ¶
Package set provides a simple set implementation.
It's under internal because with generics on the horizon there will sure be breaking changes to this package, so we don't want to make it part of the public API.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface map[interface{}]Value
Interface defines a set of interface{}.
The actual value put in must be comparable.
type String ¶
String defines a set of string.
func StringLiteral ¶
StringLiteral creates a String set from string literals.