mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
465 B
465 B
name, slug, sourceRef, category, subCategory, signatures, playUrl, variantHelpers, similarHelpers, position
| name | slug | sourceRef | category | subCategory | signatures | playUrl | variantHelpers | similarHelpers | position | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Slice | slice | it/seq.go#L680 | it | sequence |
|
https://go.dev/play/p/5WqJN9-zv |
|
|
80 |
Returns a sub-sequence from start index to end index (exclusive).
result := it.Slice(it.Range(1, 10), 2, 5)
// [3, 4, 5]