Expand description
advreader
is a simple library crate offering an iterator which splits a file into
- text sequences, separated by characters with ASCII codes <=32 and >=127.
- strings with double quotes as delimiters.
- line comments with ‘//’ as start sequence.
- comment blocks with ‘/’ as start sequence and ‘/’ as end sequence.
Results can be obatined through the next
method.
Property line_nr
provides the current line in the text file.
Re-exports§
pub use block::Block;
Modules§
Structs§
- AdvReader
- Provides iteration over bytes or utf8 string of words, strings and (line) comments.
- AdvReader
Iter Iterator
implementation ofAdvReader
to provideIterator
APIs.- AdvReader
Options - AdvReader
Thread