@return true if at least one node matches; stops at the first match
()
| 241 | * @return {@code true} if at least one node matches; stops at the first match |
| 242 | */ |
| 243 | public boolean any() { |
| 244 | return !run(true).isEmpty(); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * @return {@code true} if no node matches; stops at the first match |