Macro lines::read_lines [] [src]

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

Provides a convenient way to iterate over all lines through a LineReader. For an example, refer to the documentation of LineReader. The identifier representing the read line will be of type Result<&[u8]>.