IStrategy

interface IStrategy<V>

The strategy determines the order in which nodes in the structure are traversed.

For each node, the strategy returns a non-null but possibly empty iterator over the successors.

Parameters

<V>

Functions

Link copied to clipboard
@NotNull
abstract fun getIterator(v: V): @NotNull Iterator<V>