mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
7 lines
118 B
Go
7 lines
118 B
Go
package underscore
|
|
|
|
func Each[T any](values []T, predicate func(T)) {
|
|
for _, v := range values {
|
|
predicate(v)
|
|
}
|
|
}
|