mirror of
https://github.com/zoriya/vex.git
synced 2026-06-05 19:24:29 +00:00
Add list all feeds
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package vex
|
||||
|
||||
func Map[T, U any](ts []T, f func(T, int) U) []U {
|
||||
us := make([]U, len(ts))
|
||||
for i := range ts {
|
||||
us[i] = f(ts[i], i)
|
||||
}
|
||||
return us
|
||||
}
|
||||
Reference in New Issue
Block a user