SkipWhile Operator Overview Suppress the Observable items while a condition is not met. Example observable := rxgo.Just(1, 2, 3, 4, 5)().SkipWhile(func(i interface{}) bool { return i != 2 }) Output: 2 3 4 5 Options WithBufferedChannel WithContext WithObservationStrategy WithErrorStrategy WithPublishStrategy