dart:collection
庫中SplayTreeSet.intersection
方法的用法介紹如下。
用法:
Set<E> intersection(
Set<Object?> other
)
override
創建一個新集,該集是該集與 other
的交集。
也就是說,返回的集合包含此 Set 的所有元素,根據 other.contains
也是 other
的元素。
final characters1 = <String>{'A', 'B', 'C'};
final characters2 = <String>{'A', 'E', 'F'};
final unionSet = characters1.intersection(characters2);
print(unionSet); // {A}
相關用法
- Dart SplayTreeSet.isEmpty用法及代碼示例
- Dart SplayTreeSet.isNotEmpty用法及代碼示例
- Dart SplayTreeSet.lookup用法及代碼示例
- Dart SplayTreeSet.addAll用法及代碼示例
- Dart SplayTreeSet.remove用法及代碼示例
- Dart SplayTreeSet.retainAll用法及代碼示例
- Dart SplayTreeSet.toSet用法及代碼示例
- Dart SplayTreeSet.clear用法及代碼示例
- Dart SplayTreeSet.removeAll用法及代碼示例
- Dart SplayTreeSet.of用法及代碼示例
- Dart SplayTreeSet.from用法及代碼示例
- Dart SplayTreeSet.contains用法及代碼示例
- 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大神的英文原創作品 intersection method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。