mirror of
https://github.com/samber/lo.git
synced 2026-04-22 15:37:14 +08:00
fa095e4b4f
* fix(doc): fix go playground demo URL * fix(doc): add more go playground demo URL
493 B
493 B
name, slug, sourceRef, category, subCategory, signatures, playUrl, variantHelpers, similarHelpers, position
| name | slug | sourceRef | category | subCategory | signatures | playUrl | variantHelpers | similarHelpers | position | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DropByIndex | dropbyindex | it/seq.go#L581 | it | sequence |
|
https://go.dev/play/p/vPbrZYgiU4q |
|
|
55 |
Removes elements from a collection at the specified indexes.
result := it.DropByIndex(it.Range(1, 6), 1, 3)
// [1, 3, 5]