KtSetExtension<T> extension
- on
-
- KtSet<
T>
- KtSet<
Properties
-
dart
→ Set<
T> -
Available on KtSet<
Returns a read-only dart:core SetT> , provided by the KtSetExtension extensionno setter
Methods
-
minus(
KtIterable< T> elements) → KtSet<T> -
Available on KtSet<
Returns a set containing all elements of the original collection except the elements contained in the givenT> , provided by the KtSetExtension extensionelements
collection. -
minusElement(
T element) → KtSet< T> -
Available on KtSet<
Returns a set containing all elements of the original collection without the first occurrence of the givenT> , provided by the KtSetExtension extensionelement
. -
plus(
KtIterable< T> elements) → KtSet<T> -
Available on KtSet<
Returns a set containing all elements of the original collection and then all elements of the givenT> , provided by the KtSetExtension extensionelements
collection. -
plusElement(
T element) → KtSet< T> -
Available on KtSet<
Returns a set containing all elements of the original collection and then the givenT> , provided by the KtSetExtension extensionelement
.
Operators
-
operator +(
KtIterable< T> elements) → KtSet<T> -
Available on KtSet<
Returns a set containing all elements of the original collection and then all elements of the givenT> , provided by the KtSetExtension extensionelements
collection. -
operator -(
KtIterable< T> elements) → KtSet<T> -
Available on KtSet<
Returns a set containing all elements of the original collection except the elements contained in the givenT> , provided by the KtSetExtension extensionelements
collection.