Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dict ¶
type Dict[K comparable, V any] underlyingmap[K, V]
type GetSetter ¶
type GetSetter[K comparable, V any] interface { Get(key K) (value V) Set(key K, value V) }
type Lister ¶
type Lister[K comparable, V any] interface { Keys() []K Values() []V }
type Mapper ¶
type Mapper[K comparable, V any] interface { GetSetter[K, V] Stringer[K, V] Lookup(key K) (value V, ok bool) }
type Stringer ¶
type Stringer[K comparable, V any] interface { String() string }
Click to show internal directories.
Click to hide internal directories.