ISplitIterator.skipDelim

Skips the delimiter which str starts with. The return value is at most str.length. It is assured that str starts with a delimiter so a subclass may return an undefined result otherwise. Additionally, a subclass is encouraged to use an 'in' contract to ensure str starts with a delimiter and/or is long enought to skip a leading delimiter.

class ISplitIterator
protected abstract
size_t
skipDelim

Parameters

str cstring

string starting with delimiter

Return Value

Type: size_t

index of the first character after the starting delimiter in str

Meta