Performs the given action for each match in document order. @param action the action
(final Consumer<? super T> action)
| 279 | * @param action the action |
| 280 | */ |
| 281 | public void forEach(final Consumer<? super T> action) { |
| 282 | run(false).forEach(action); |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Performs the given action, with enclosing context, for each match in document order. |