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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。