當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart Set.intersection用法及代碼示例


dart:core 庫中Set.intersection 方法的用法介紹如下。

用法:

Set<E> intersection(
   Set<Object?> other   
)

創建一個新集,該集是該集與 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.dev大神的英文原創作品 intersection method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。