Skip is the operation that skips passed number of elements in a sequence.
Take syntax
Skip
: 'skip' '(' ConstantExpression ')'
;
Related tokens
Skip examples
- Skip first cell of the sequence.
csharpselect(tableCells) // PdfTableCell ->skip(1) // PdfTableCell2. Take only the second and the third rows.csharpselect(tableCells) // PdfTableCell ->skip(1) // PdfTableCell ->take(2) // PdfTableCell