dart:collection
库中SplayTreeSet.of
的用法介绍如下。
用法:
SplayTreeSet<E>.of(
Iterable<E> elements,
[int compare(
E key1,
E key2
)?,
bool isValidKey(
dynamic potentialKey
)?]
)
从 elements
创建一个 SplayTreeSet 。
该集合就像由 new SplayTreeSet<E>(compare, isValidKey)
创建一样工作。
所有elements
都应该作为compare
函数的参数有效。例子:
final baseSet = <int>{1, 2, 3};
final setOf = SplayTreeSet<num>.of(baseSet);
print(setOf); // {1, 2, 3}
相关用法
- 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.from用法及代码示例
- 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>.of constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。