List<int> rangeSearch(dynamic low, dynamic high) { final result = <int>[]; _range(root, low, high, result); return result; }