intersection 方法

Set<String> intersection(
  1. Set<Object?> other
)
继承

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

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

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

实现

Set<String> intersection(Set<Object?> other) =>
    readClasses().intersection(other);