firstKeyAfter 方法

K? firstKeyAfter(
  1. K key
)

获取在map中最小且严格大于 key 的键。如果没有找到任何键,则返回 null

实现

K? firstKeyAfter(K key) {
  if (key == null) throw ArgumentError(key);
  if (_root == null) return null;
  int comp = _splay(key);
  if (comp > 0) return _root!.key;
  _SplayTreeMapNode<K, V>? node = _root!._right;
  if (node == null) return null;
  var nodeLeft = node._left;
  while (nodeLeft != null) {
    node = nodeLeft;
    nodeLeft = node._left;
  }
  return node!.key;
}