mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-21 00:47:11 +08:00
7 lines
133 B
Go
7 lines
133 B
Go
package stringset
|
|
|
|
type Set map[string]struct{}
|
|
|
|
func New(...string) Set { return nil }
|
|
|
|
func (s Set) Sort() []string { return nil }
|