2. continue

continue()

Skip what follows in the enclosing for-each loop and continue with next iteration.

Example:

for-each $elementList/* {
    if @xml:id = "i1" {
        continue();
    }
    ...
}