dart:collection
库中LinkedHashSet.of
的用法介绍如下。
用法:
LinkedHashSet<E>.of(
Iterable<E> elements
)
从 elements
创建一个链接的哈希集。
通过LinkedHashSet<E>()
创建一个链接哈希集,并按照迭代顺序将elements
的每个元素添加到该集合中。例子:
final baseSet = <int>{1, 2, 3};
final setOf = LinkedHashSet<num>.of(baseSet);
print(setOf); // {1, 2, 3}
相关用法
- Dart LinkedHashSet.from用法及代码示例
- Dart LinkedHashSet.identity用法及代码示例
- 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>.of constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。