IgnoreElements ignores all items emitted by the source ObservableSource except for the errors. Cannot be run in parallel.
(opts ...Option)
| 1185 | // IgnoreElements ignores all items emitted by the source ObservableSource except for the errors. |
| 1186 | // Cannot be run in parallel. |
| 1187 | func (o *ObservableImpl) IgnoreElements(opts ...Option) Observable { |
| 1188 | return observable(o.parent, o, func() operator { |
| 1189 | return &ignoreElementsOperator{} |
| 1190 | }, true, false, opts...) |
| 1191 | } |
| 1192 | |
| 1193 | type ignoreElementsOperator struct{} |
| 1194 |
nothing calls this directly
no test coverage detected