menu
Dart
dart:collection
SplayTreeMap
<
K
,
V
>
firstKey method
firstKey
dark_mode
light_mode
描述
firstKey
方法
K?
firstKey
(
)
映射中的第一个键。
如果映射为空,返回
null
。
实现
K? firstKey() { if (_root == null) return null; return _first!.key; }
Dart
dart:collection
SplayTreeMap
<
firstKey 方法
SplayTreeMap 类
Cookie 管理控制