Documentation ¶
Index ¶
- type BiMap
- func (m *BiMap[K, V]) DeleteKey(key K) (V, bool)
- func (m *BiMap[K, V]) DeleteValue(val V) (K, bool)
- func (m *BiMap[K, V]) GetKey(val V) (K, bool)
- func (m *BiMap[K, V]) GetValue(key K) (V, bool)
- func (m *BiMap[K, _]) HasKey(key K) bool
- func (m *BiMap[_, V]) HasValue(val V) bool
- func (m *BiMap[K, V]) Len() int
- func (m *BiMap[K, V]) Put(key K, val V) []Entry[K, V]
- type Entry
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BiMap ¶
type BiMap[K, V comparable] struct { // contains filtered or unexported fields }
BiMap is a bi-directional map.
func (*BiMap[K, V]) DeleteKey ¶
DeleteKey removes [key] from the map and returns the value it mapped to.
func (*BiMap[K, V]) DeleteValue ¶
DeleteValue removes [val] from the map and returns the key that mapped to it.
Click to show internal directories.
Click to hide internal directories.