Skip¶
func Skip[T any](slice []T, n int) []T
Skip returns the slice with the first n elements removed. If n is greater than or equal to the slice length, returns an empty slice. If n is zero or negative, returns the original slice.
func Skip[T any](slice []T, n int) []T
Skip returns the slice with the first n elements removed. If n is greater than or equal to the slice length, returns an empty slice. If n is zero or negative, returns the original slice.