mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
459 B
459 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 |
|
|
|
55 |
Removes elements from a collection at the specified indexes.
result := it.DropByIndex(it.Range(1, 6), 1, 3)
// [1, 3, 5]