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