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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。