Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Map ¶
func Map[T, V any](l []T, f func(T) V) []V
Map returns a list constructed by appling a function f to all items in the list l.
func Remove ¶
Remove removes the element in position i from the list. It does not preserve the order of the original slice.
func ToMap ¶
func ToMap[K comparable, T any](l []T, k func(T) K) map[K]T
ToMap returns a map from l where the keys are obtainined applying the func k to the elements of l.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.