Linked Hash Set
The implementation of the MutableSet interface, backed by a LinkedHashMap instance.
This implementation preserves the insertion order of elements during the iteration.
Constructors
LinkedHashSet
Link copied to clipboard
Constructs a new empty LinkedHashSet.
LinkedHashSet
Link copied to clipboard
LinkedHashSet
Link copied to clipboard
Constructs a new empty LinkedHashSet.
LinkedHashSet
Link copied to clipboard
Constructs a new LinkedHashSet filled with the elements of the specified collection.
Functions
add All
Link copied to clipboard
contains
Link copied to clipboard
expect open operator override fun contains(element: @UnsafeVariance E): Boolean
Content copied to clipboard
contains All
Link copied to clipboard
expect open override fun containsAll(elements: Collection<@UnsafeVariance E>): Boolean
Content copied to clipboard
Checks if all elements in the specified collection are contained in this collection.
iterator
Link copied to clipboard
remove All
Link copied to clipboard
retain All
Link copied to clipboard