toMutableSet

Common
JVM
JS
Native
1.0
fun <T> Array<out T>.toMutableSet(): MutableSet<T>
(source)
fun ByteArray.toMutableSet(): MutableSet<Byte>
(source)
fun ShortArray.toMutableSet(): MutableSet<Short>
(source)
fun IntArray.toMutableSet(): MutableSet<Int>
(source)
fun LongArray.toMutableSet(): MutableSet<Long>
(source)
fun FloatArray.toMutableSet(): MutableSet<Float>
(source)
fun DoubleArray.toMutableSet(): MutableSet<Double>
(source)
fun BooleanArray.toMutableSet(): MutableSet<Boolean>
(source)
fun CharArray.toMutableSet(): MutableSet<Char>
(source)

Returns a new MutableSet containing all distinct elements from the given array.

The returned set preserves the element iteration order of the original array.

Common
JVM
JS
Native
1.0
fun <T> Iterable<T>.toMutableSet(): MutableSet<T>
(source)

Returns a new MutableSet containing all distinct elements from the given collection.

The returned set preserves the element iteration order of the original collection.