toSet

fun <T> Array<out T>.toSet(): Set<T>(source)

Returns a Set of all elements.

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

Since Kotlin

1.0

fun <T> Iterable<T>.toSet(): Set<T>(source)

Returns a Set of all elements.

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

Since Kotlin

1.0