EntityRange.popFront

Move to the next entity.

The next entity is the next one that is linearly in the XML document. So, if the current entity has child entities, the next entity will be the first child entity, whereas if it has no child entities, it will be the next entity at the same level.

struct EntityRange(Config cfg, R)
void
popFront
()
if (
isForwardRange!R &&
isSomeChar!(ElementType!R)
)

Throws

XMLParsingException on invalid XML.

Meta