intersection 方法

Set<String> 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<String> intersection(Set<Object?> other) =>
    readClasses().intersection(other);