setOf
Требования к платформе и версии: JVM (1.0), JS (1.0), Native (1.0)
fun <T> setOf(vararg elements: T): Set<T>
Возвращает новое неизменяемое множество с заданными элементами. Элементы множества итерируются в порядке их указания. Возвращаемое множество сериализуемо (JVM).
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val set1 = setOf(1, 2, 3)
val set2 = setOf(3, 2, 1)
// setOf preserves the iteration order of elements
println(set1) // [1, 2, 3]
println(set2) // [3, 2, 1]
// but the sets with the same elements are equal no matter of order
println("set1 == set2 is ${set1 == set2}") // true
//sampleEnd
}
Требования к платформе и версии: JVM (1.0), JS (1.0), Native (1.0)
fun <T> setOf(): Set<T>
Возвращает пустое неизменяемое множество. Возвращаемое множество сериализуемо (JVM).
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val set = setOf<String>()
println("set.isEmpty() is ${set.isEmpty()}") // true
// another way to create an empty set,
// type parameter is inferred from the expected type
val other: Set<Int> = emptySet()
// Empty sets are equal
println("set == other is ${set == other}") // true
println(set) // []
//sampleEnd
}
Требования к платформе и версии: JVM (1.0), JS (1.0)
fun <T> setOf(element: T): Set<T>
Для JVM
Возвращает неизменяемое множество, содержащее только указанный объект element. Возвращаемое множество сериализуемо.
Для JS
Возвращает неизменяемое множество, содержащее только указанный объект element.
© 2010–2022 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/set-of.html