exists
inline fun <T> Node.exists(noinline sel: (T) -> Boolean? = null, noinline mustSatisfy: (T) -> Boolean): Pair<Boolean, List<T>>
Evaluates if the conditions specified in mustSatisfy hold for at least one node in the graph. The optional argument sel can be used to filter nodes which are considered during the evaluation.