- Implemented types
-
- Available extensions
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
iter
→ Iterable<T>
-
Access to a Iterable to be used in for-loops
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
set
→ Set<T>
-
Deprecated, use asSet or iter for loops
no setterinherited
-
size
→ int
-
Returns the size of the collection.
no setterinherited
Methods
-
add(T element)
→ bool
-
Adds the specified element to the collection.
inherited
-
addAll(KtIterable<T> elements)
→ bool
-
Adds all of the elements in the specified collection to this collection.
inherited
-
asSet()
→ Set<T>
-
Creates a Set instance that wraps the original KtSet. It acts as a view.
inherited
-
clear()
→ void
-
Removes all elements from this collection.
inherited
-
contains(T element)
→ bool
-
Checks if the specified element is contained in this collection.
inherited
-
containsAll(KtCollection<T> elements)
→ bool
-
Checks if all elements in the specified collection are contained in this collection.
inherited
-
isEmpty()
→ bool
-
Returns
true
if the collection is empty (contains no elements), false
otherwise.
inherited
-
iterator()
→ KtMutableIterator<T>
-
Returns an iterator over the elements of this object.
inherited
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
remove(T element)
→ bool
-
Removes a single instance of the specified element from this
collection, if it is present.
inherited
-
removeAll(KtIterable<T> elements)
→ bool
-
Removes all of this collection's elements that are also contained in the specified collection.
inherited
-
retainAll(KtIterable<T> elements)
→ bool
-
Retains only the elements in this collection that are contained in the specified collection.
inherited
-
toString()
→ String
-
A string representation of this object.
inherited