Visitor<T> typedef
Visitor<T> =
void Function(T node)
Signature of a function used to visit nodes during tree traversal.
Implementation
typedef Visitor<T> = void Function(T node);
Signature of a function used to visit nodes during tree traversal.
typedef Visitor<T> = void Function(T node);