Interface Algorithm.GraphTraversalPredicate<A,B>

Enclosing interface:
Algorithm
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Algorithm.GraphTraversalPredicate<A,B>
Functional interface for a predicate answering the question "Can we traverse the arc and the node adjacent to this arc?"

Example of implementation:

(addedArc, addedNode, addedArcDirection) -> true

See Also: