Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CloseIgnore ¶ added in v1.25.0
CloseIgnore closes c, ignoring any error. Its main use is to satisfy linters.
func Filter ¶
Filter applies fn on all elements in src, producing a new slice containing the elements for which fn returned true, preserving the same order.
func Find ¶ added in v1.33.0
Find returns the first element where pred returns true. The second argument is true if an element was found.
func Map ¶
func Map[A, B any](src []A, fn func(A) B) []B
Map applies fn on all elements in src, producing a new slice with the results, in order.
func MapKeys ¶ added in v1.25.0
func MapKeys[M ~map[K]V, K comparable, V any](m M) []K
MapKeys returns the keys of the map m. The keys will be in an indeterminate order.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.