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)
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.
output := input.Skip(3)