intersection 抽象方法

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

创建一个新的集合,它是此集合与 other 的交集。

也就是说,返回的集合包含此 Set 中的所有元素,这些元素也是 other 的元素,根据 other.contains 进行判断。

final characters1 = <String>{'A', 'B', 'C'};
final characters2 = <String>{'A', 'E', 'F'};
final intersectionSet = characters1.intersection(characters2);
print(intersectionSet); // {A}

实现

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