dart:collection
库中LinkedHashSet.from
的用法介绍如下。
用法:
LinkedHashSet<E>.from(
Iterable elements
)
创建一个包含所有 elements
的链接哈希集。
通过LinkedHashSet<E>()
创建一个链接哈希集,并按照迭代顺序将elements
的每个元素添加到该集合中。
所有 elements
都应该是 E
的实例。 elements
可迭代对象本身可以具有任何元素类型,因此此构造函数可用于 down-cast a Set
,例如:
Set<SuperType> superSet = ...;
Iterable<SuperType> tmp = superSet.where((e) => e is SubType);
Set<SubType> subSet = LinkedHashSet<SubType>.from(tmp);
例子:
final numbers = <num>[10, 20, 30];
final setFrom = LinkedHashSet<int>.from(numbers);
print(setFrom); // {10, 20, 30}
相关用法
- Dart LinkedHashSet.identity用法及代码示例
- Dart LinkedHashSet.of用法及代码示例
- Dart LinkedHashSet构造函数用法及代码示例
- Dart LinkedHashSet用法及代码示例
- Dart LinkedHashMap用法及代码示例
- Dart LinkedHashMap.from用法及代码示例
- Dart LinkedHashMap.fromEntries用法及代码示例
- Dart LinkedHashMap.fromIterables用法及代码示例
- Dart LinkedHashMap.identity用法及代码示例
- Dart LinkedHashMap.fromIterable用法及代码示例
- Dart LinkedHashMap.of用法及代码示例
- Dart LinkedHashMap构造函数用法及代码示例
- Dart LinkedList.isEmpty用法及代码示例
- Dart LinkedList用法及代码示例
- Dart Link.resolveSymbolicLinks用法及代码示例
- Dart Link.resolveSymbolicLinksSync用法及代码示例
- Dart LineSplitter用法及代码示例
- Dart ListMixin.expand用法及代码示例
- Dart List.first用法及代码示例
- Dart List.sort用法及代码示例
- Dart ListMixin.contains用法及代码示例
- Dart ListQueue.of用法及代码示例
- Dart ListQueue.contains用法及代码示例
- Dart ListMixin.join用法及代码示例
- Dart ListMixin.setAll用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 LinkedHashSet<E>.from constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。