lines::try_read_lines! [] [src]

macro_rules! try_read_lines {
    ($inp:ident in $expr:expr, $b:block) => { ... };
}

Provides a convenient way to iterate over all lines through a LineReader wrapping the invocation to LineReader::read_line with a try!. Hence, the identifer representing the read line will be directly of type &[u8].