dart:collection
庫中SplayTreeMap.fromIterable
的用法介紹如下。
用法:
SplayTreeMap<K, V>.fromIterable(
Iterable iterable,
{K key(
dynamic element
)?,
V value(
dynamic element
)?,
int compare(
K key1,
K key2
)?,
bool isValidKey(
dynamic potentialKey
)?}
)
創建一個 SplayTreeMap ,其中鍵和值是從 iterable
計算的。
對於iterable
的每個元素,此構造函數通過分別應用key
和value
來計算鍵/值對。
鍵/值對的鍵不需要是唯一的。最後一次出現的鍵將簡單地覆蓋任何以前的值。
如果沒有為 key
和 value
指定函數,則默認使用可迭代值本身。例子:
final numbers = [12, 11, 14, 13];
final mapFromIterable =
SplayTreeMap<int, int>.fromIterable(numbers,
key: (i) => i, value: (i) => i * i);
print(mapFromIterable); // {11: 121, 12: 144, 13: 169, 14: 196}
相關用法
- Dart SplayTreeMap.fromIterables用法及代碼示例
- Dart SplayTreeMap.from用法及代碼示例
- Dart SplayTreeMap.forEach用法及代碼示例
- Dart SplayTreeMap.containsValue用法及代碼示例
- Dart SplayTreeMap.addAll用法及代碼示例
- Dart SplayTreeMap.clear用法及代碼示例
- Dart SplayTreeMap.putIfAbsent用法及代碼示例
- Dart SplayTreeMap.remove用法及代碼示例
- Dart SplayTreeMap.containsKey用法及代碼示例
- Dart SplayTreeMap.of用法及代碼示例
- Dart SplayTreeMap.updateAll用法及代碼示例
- Dart SplayTreeMap.update用法及代碼示例
- Dart SplayTreeMap用法及代碼示例
- Dart SplayTreeSet.lookup用法及代碼示例
- Dart SplayTreeSet.isEmpty用法及代碼示例
- Dart SplayTreeSet用法及代碼示例
- Dart SplayTreeSet.addAll用法及代碼示例
- Dart SplayTreeSet.remove用法及代碼示例
- Dart SplayTreeSet.isNotEmpty用法及代碼示例
- Dart SplayTreeSet.retainAll用法及代碼示例
- Dart SplayTreeSet.toSet用法及代碼示例
- Dart SplayTreeSet.clear用法及代碼示例
- Dart SplayTreeSet.removeAll用法及代碼示例
- Dart SplayTreeSet.of用法及代碼示例
- Dart SplayTreeSet.from用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 SplayTreeMap<K, V>.fromIterable constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。