|
300 | 300 | //! [`take`]: trait.Stream.html#method.take |
301 | 301 | //! [`min`]: trait.Stream.html#method.min |
302 | 302 |
|
| 303 | +pub use double_ended_stream::DoubleEndedStream; |
303 | 304 | pub use empty::{empty, Empty}; |
| 305 | +pub use exact_size_stream::ExactSizeStream; |
304 | 306 | pub use from_fn::{from_fn, FromFn}; |
305 | 307 | pub use from_iter::{from_iter, FromIter}; |
| 308 | +pub use fused_stream::FusedStream; |
| 309 | +pub use interval::{interval, Interval}; |
306 | 310 | pub use once::{once, Once}; |
| 311 | +pub use pending::{pending, Pending}; |
| 312 | +pub use product::Product; |
307 | 313 | pub use repeat::{repeat, Repeat}; |
308 | 314 | pub use repeat_with::{repeat_with, RepeatWith}; |
| 315 | +pub use stream::Merge; |
309 | 316 | pub use stream::*; |
| 317 | +pub use successors::{successors, Successors}; |
| 318 | +pub use sum::Sum; |
310 | 319 |
|
311 | 320 | pub(crate) mod stream; |
312 | 321 |
|
| 322 | +mod double_ended_stream; |
313 | 323 | mod empty; |
| 324 | +mod exact_size_stream; |
314 | 325 | mod from_fn; |
315 | 326 | mod from_iter; |
| 327 | +mod fused_stream; |
| 328 | +mod interval; |
316 | 329 | mod once; |
| 330 | +mod pending; |
| 331 | +mod product; |
317 | 332 | mod repeat; |
318 | 333 | mod repeat_with; |
| 334 | +mod successors; |
| 335 | +mod sum; |
319 | 336 |
|
320 | 337 | cfg_unstable! { |
321 | | - mod double_ended_stream; |
322 | | - mod exact_size_stream; |
323 | | - mod extend; |
324 | 338 | mod from_stream; |
325 | | - mod fused_stream; |
326 | | - mod interval; |
327 | 339 | mod into_stream; |
328 | | - mod pending; |
329 | | - mod product; |
330 | | - mod successors; |
331 | | - mod sum; |
| 340 | + mod extend; |
332 | 341 |
|
333 | | - pub use double_ended_stream::DoubleEndedStream; |
334 | | - pub use exact_size_stream::ExactSizeStream; |
335 | 342 | pub use extend::{extend, Extend}; |
336 | 343 | pub use from_stream::FromStream; |
337 | | - pub use fused_stream::FusedStream; |
338 | | - pub use interval::{interval, Interval}; |
339 | 344 | pub use into_stream::IntoStream; |
340 | | - pub use pending::{pending, Pending}; |
341 | | - pub use product::Product; |
342 | | - pub use stream::Merge; |
343 | | - pub use successors::{successors, Successors}; |
344 | | - pub use sum::Sum; |
345 | 345 | } |
0 commit comments