Skip Operator Overview Suppress the first n items emitted by an Observable. Example observable := rxgo.Just(1, 2, 3, 4, 5)().Skip(2) Output: 3 4 5 Options WithBufferedChannel WithContext WithObservationStrategy WithErrorStrategy WithPublishStrategy