W3cubDocs

/Dart 2

Set<E>.identity constructor

Set<E>.identity()

Creates an empty identity Set.

The created Set is a LinkedHashSet that uses identity as equality relation.

The set is equivalent to one created by new LinkedHashSet<E>.identity().

Implementation

factory Set.identity() = LinkedHashSet<E>.identity;

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-core/Set/Set.identity.html