Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:collection
  3. SplayTreeMap<K,V>
  4. firstKey method
firstKey
description

firstKey method

K?firstKey()

The first key in the map.

Returnsnull if the map is empty.

Implementation

K? firstKey() {  final root = _root;  if (root == null) return null;  return (_root = _splayMin(root)).key;}
  1. Dart
  2. dart:collection
  3. SplayTreeMap<K,V>
  4. firstKey method
SplayTreeMap class

[8]ページ先頭

©2009-2025 Movatter.jp