union 抽象方法
- Set<
E> other
创建一个新的集合,包含此集合和 other
中的所有元素。
也就是说,返回的集合包含此 Set 以及 other
中的所有元素。
final characters1 = <String>{'A', 'B', 'C'};
final characters2 = <String>{'A', 'E', 'F'};
final unionSet1 = characters1.union(characters2);
print(unionSet1); // {A, B, C, E, F}
final unionSet2 = characters2.union(characters1);
print(unionSet2); // {A, E, F, B, C}
实现
Set<E> union(Set<E> other);