mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
iter
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
package sets
|
||||
|
||||
type Set[T comparable] interface {
|
||||
Add(values ...T)
|
||||
Remove(v T)
|
||||
Contain(value T) bool
|
||||
IsEmpty() bool
|
||||
}
|
||||
|
Reference in New Issue
Block a user