dart:collection
库中SplayTreeSet.from
的用法介绍如下。
用法:
SplayTreeSet<E>.from(
Iterable elements,
[int compare(
E key1,
E key2
)?,
bool isValidKey(
dynamic potentialKey
)?]
)
创建一个包含所有 elements
的 SplayTreeSet。
该集合就像由 SplayTreeSet<E>(compare, isValidKey)
创建一样工作。
所有 elements
应该是 E
的实例和 compare
的有效参数。 elements
可迭代对象本身可以具有任何元素类型,因此此构造函数可用于 down-cast a Set
,例如:
Set<SuperType> superSet = ...;
Set<SubType> subSet =
SplayTreeSet<SubType>.from(superSet.whereType<SubType>());
例子:
final numbers = <num>[20, 30, 10];
final setFrom = SplayTreeSet<int>.from(numbers);
print(setFrom); // {10, 20, 30}
相关用法
- Dart SplayTreeSet.lookup用法及代码示例
- Dart SplayTreeSet.isEmpty用法及代码示例
- 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.contains用法及代码示例
- Dart SplayTreeSet.intersection用法及代码示例
- Dart SplayTreeSet.add用法及代码示例
- Dart SplayTreeSet.difference用法及代码示例
- Dart SplayTreeSet.union用法及代码示例
- Dart SplayTreeSet用法及代码示例
- Dart SplayTreeMap.from用法及代码示例
- Dart SplayTreeMap.containsValue用法及代码示例
- Dart SplayTreeMap.addAll用法及代码示例
- Dart SplayTreeMap.fromIterables用法及代码示例
- Dart SplayTreeMap.fromIterable用法及代码示例
- Dart SplayTreeMap.clear用法及代码示例
- Dart SplayTreeMap.forEach用法及代码示例
- Dart SplayTreeMap.putIfAbsent用法及代码示例
- Dart SplayTreeMap用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 SplayTreeSet<E>.from constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。