Skip to main content Link Search Menu Expand Document (external link)

Take

func (input *Channel[T]) Skip(n uint64) *Channel[T]

Skip skips the first n input values, and then starts sending values from n+1 on to the output channel.

Example

output := input.Skip(3)