Class Skip
Represents an operator that bypasses the specified number of elements at the start of an observable sequence and returns the remaining elements.
The Skip
operator modifies the source sequence to remove the specified number of elements from the start of the sequence. After the maximum number of elements is received, Skip
will then emit the remaining elements in the sequence. Skip
can be used to ignore unstable values from the start of a dynamic time series, e.g. to remove the auto-exposure adaptation start of a camera capture sequence.
If the source sequence terminates before the specified number of elements is received, Skip
will terminate without emitting any values.
public class Skip : Combinator
- Inheritance
-
Skip
- Inherited Members
Properties
- Count
Gets or sets the number of elements to skip.
Methods
- Process<TSource>(IObservable<TSource>)
Bypasses the specified number of elements at the start of an observable sequence and returns the remaining elements.