//! Abstractions for timely dataflow programming.
//!
//! Timely dataflow programs are constructed by manipulating [`Stream`](stream) objects,
//! most often using pre-defined [operators] that implement known patterns.
//!
//! # Examples
//! ```
//! use timely::dataflow::operators::{ToStream, Inspect};
//!
//! timely::example(|scope| {
//! (0..10).to_stream(scope)
//! .container::<Vec<_>>()
//! .inspect(|x| println!("seen: {:?}", x));
//! });
//! ```
pub use ;
pub use ;
pub use Handle as InputHandle;
pub use Handle as InputHandleVec;
pub use Handle as ProbeHandle;