locate method

TreeElement<T>? locate(
  1. T value
)

Finds the tree element for the given value.

Implementation

TreeElement<T>? locate(T value) => _locate(value, root);