SelectMany is the operation that can get from the objects collection the sequence of requested objects.
SelectManyStage syntax
SelectManyStage
: 'selectMany' '(' Selector ')'
;Related tokens
Usage examples
- Select table rows
csharpselect(tables)->selectMany(tableRows) // PdfTableRow2. Select table cellscsharpselect(tables)->selectMany(tableCells) // PdfTableCell