pub fn convert_ref<'a, I, T: ?Sized>(
    iterator: I
) -> ConvertRef<'a, I::IntoIter, T> where
    I: IntoIterator<Item = &'a T>, 
Expand description

Turns an iterator of references into a streaming iterator.