dart:svg
庫中AttributeClassSet.union
方法的用法介紹如下。
用法:
Set<String> union(
Set<String> other
)
inherited
創建一個新集合,其中包含該集合的所有元素和 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}
相關用法
- Dart AttributeClassSet.intersection用法及代碼示例
- Dart AttributeClassSet.clear用法及代碼示例
- Dart AttributeClassSet.fold用法及代碼示例
- Dart AttributeClassSet.forEach用法及代碼示例
- Dart AttributeClassSet.every用法及代碼示例
- Dart AttributeClassSet.map用法及代碼示例
- Dart AttributeClassSet.removeWhere用法及代碼示例
- Dart AttributeClassSet.containsAll用法及代碼示例
- Dart AttributeClassSet.join用法及代碼示例
- Dart AttributeClassSet.retainWhere用法及代碼示例
- Dart AttributeClassSet.singleWhere用法及代碼示例
- Dart AttributeClassSet.toList用法及代碼示例
- Dart AttributeClassSet.takeWhile用法及代碼示例
- Dart AttributeClassSet.lastWhere用法及代碼示例
- Dart AttributeClassSet.skip用法及代碼示例
- Dart AttributeClassSet.skipWhile用法及代碼示例
- Dart AttributeClassSet.where用法及代碼示例
- Dart AttributeClassSet.isEmpty用法及代碼示例
- Dart AttributeClassSet.take用法及代碼示例
- Dart AttributeClassSet.firstWhere用法及代碼示例
- Dart AttributeClassSet.expand用法及代碼示例
- Dart AttributeClassSet.any用法及代碼示例
- Dart AttributeClassSet.isNotEmpty用法及代碼示例
- Dart AttributeClassSet.difference用法及代碼示例
- Dart AttributeClassSet.reduce用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 union method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。