SelectMany stage
SelectMany is the operation that can get from the objects collection the sequence of requested objects.
SelectManyStage syntax
antlr
SelectManyStage
: 'selectMany' '(' Selector ')'
;
Related tokens
Selector
Usage examples
- Select table rowscsharp
select(tables)->selectMany(tableRows) // PdfTableRow[]
- Select table cellscsharp
select(tables)->selectMany(tableCells) // PdfTableCell[]