Iterator for the deltatext sections of the RCS file. Typical usage:
string raw = Stdio.read_file(my_rcs_filename); Parser.RCS rcs = Parser.RCS(my_rcs_filename, 0); raw = rcs->parse_delta_sections(rcs->parse_admin_section(raw)); foreach(rcs->DeltatextIterator(raw); int n; Parser.RCS.Revision rev) do_something(rev);
int Parser.RCS.DeltatextIterator.nint(0..1) read_next()
Drops the leading whitespace before next revision's deltatext entry and sets this_rev to the revision number we're about to read.