mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
20 lines
336 B
Go
20 lines
336 B
Go
package collections
|
|
|
|
type Map[K comparable, V any] interface {
|
|
Size() int
|
|
IsEmpty() bool
|
|
ContainsKey(key K) bool
|
|
Get(key K) (V, bool)
|
|
Put(key K, value V) V
|
|
Remove(key K) bool
|
|
PutAll(other Map[K, V])
|
|
Clear()
|
|
Keys() []K
|
|
Values() []V
|
|
Entries() []MapEntry[K, V]
|
|
}
|
|
|
|
type MapEntry[K comparable, V any] struct {
|
|
Key K
|
|
Value V
|
|
}
|