Extend the stream with another stream.
(&mut self, other: impl IntoIterator<Item = E>)
| 172 | |
| 173 | /// Extend the stream with another stream. |
| 174 | pub fn extend(&mut self, other: impl IntoIterator<Item = E>) { |
| 175 | self.0.extend(other); |
| 176 | } |
| 177 | |
| 178 | /// Unpack an error into `self`, returning `None` if there was an error. |
| 179 | /// This is not exposed because `CombineErrors` is more convenient. |
no outgoing calls
no test coverage detected