toSet
fun <T> Iterable<T>.toSet(): Set<T>
Returns a Set of all elements.
The returned set preserves the element iteration order of the original collection.
fun <T> Array<out T>.toSet(): Set<T>
fun ByteArray.toSet(): Set<Byte>
fun ShortArray.toSet(): Set<Short>
fun IntArray.toSet(): Set&