Files
lo/docs/data/core-dropright.md
T
2025-10-06 17:15:49 +02:00

587 B

name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
name slug sourceRef category subCategory playUrl variantHelpers similarHelpers position signatures
DropRight dropright slice.go#L457 core slice https://go.dev/play/p/GG0nXkSJJa3
core#slice#dropright
core#slice#drop
core#slice#dropwhile
core#slice#droprightwhile
core#slice#dropbyindex
core#slice#slice
core#slice#cutsuffix
core#slice#trimright
180
func DropRight[T any, Slice ~[]T](collection Slice, n int) Slice

Drops n elements from the end of a slice.

lo.DropRight([]int{0, 1, 2, 3, 4, 5}, 2)
// []int{0, 1, 2, 3}