mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
555 B
555 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RepeatBy | repeatby | slice.go#L362 | core | slice | https://go.dev/play/p/ozZLCtX_hNU |
|
|
220 |
|
Builds a slice by calling the callback N times with the current index.
lo.RepeatBy(5, func(i int) string {
return strconv.Itoa(i * i)
})
// []string{"0", "1", "4", "9", "16"}