multiple property

bool multiple
getter/setter pair

Whether this parser can extract multiple results.

If true, the parser will return a list of results (e.g., all products on a page). If false, it will return a single result.

When true, child parsers will be executed for each item in the list.

Defaults to false (single result).

Implementation

bool multiple = false;