Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Map ¶
type Map[E any] struct { // contains filtered or unexported fields }
func (*Map[E]) ForEachReplace ¶
func (m *Map[E]) ForEachReplace(f func(E) E)
type Set ¶
type Set struct {
// contains filtered or unexported fields
}
Set is a container for unique byte slices.
func (*Set) Add ¶
Add adds the slice b to the Set. The slice b is added based on its value at the time Add is called. Subsequent changes to b do not affect the Set. If b is already present in the Set, Add is a no-op.
func (*Set) Delete ¶
Delete removes b from the Set. If b is not present in the Set, Delete is a no-op.
Click to show internal directories.
Click to hide internal directories.