Usage: ```rust use weighted_select::{self, IncompleteSelect};
let select = weightedselect::new() .append(fetchfroma, 5) .append(fetchfromb, 2) .append(fetchfrom_c, 3) .build(); ```
It produces a stream that combines three underlying streams (fetch_from_*
) and polls them according to their weights (5
, 2
, 3
). Each stream will be polled at most weight
times consecutively.