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);