getLowValue method

int getLowValue(
  1. T node
)

Gets the low value of a specific node

Implementation

int getLowValue(T node) => lowValues[node] ?? -1;