Function unbounded
fn unbounded<T>() -> (Sender<T>, Receiver<T>)
Creates a channel of unbounded capacity.
This channel has a growable buffer that can hold any number of messages at a time.
Examples
use thread;
use unbounded;
let = unbounded;
// Computes the n-th Fibonacci number.
// Spawn an asynchronous computation.
spawn;
// Print the result of the computation.
println!;