Push the characters ranging from the specified begin up to (but not including) the specified end into this parser.

Synopsis

Declared in <balxml_listparser.h>

template<class INPUT_ITERATOR>
int
pushCharacters(
    INPUT_ITERATOR begin,
    INPUT_ITERATOR end);

Description

The parameterized INPUT_ITERATOR must be dereferenceable to a char value. The behavior is undefined unless an object is associated with this parser.

Return Value

0 if successful, and a non‐zero value otherwise

Parameters

Name

Description

begin

beginning of the character range to push

end

one past the end of the character range to push

Created with MrDocs