Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 362 Bytes

LineIdIterator.md

File metadata and controls

23 lines (15 loc) · 362 Bytes

LineIdIterator

Iterates over line indices with a specified tag.

class LineIdIterator : Object
{
	static LineIdIterator Create(int tag);

	int Next();
}

Create

Creates a new iterator over lines with tag tag.

Next

Returns the index of the current line and advances the iterator. Returns -1 when the list is exhausted.