toNotEmptySetOrNull
@ExperimentalSinceKotoolsTypes(version = "4.3.1")
Returns a NotEmptySet containing all the elements of this collection, or returns null
if this collection is empty.
var collection: Collection<Int> = setOf(1, 2, 3, 1)
var result: NotEmptySet<Int>? = collection.toNotEmptySetOrNull()
println(result) // [1, 2, 3]
collection = emptySet()
result = collection.toNotEmptySetOrNull()
println(result) // null
Content copied to clipboard
Please note that changes made to the original collection will not be reflected on the resulting NotEmptySet.
val original: MutableCollection<Int> = mutableSetOf(1, 2, 3, 1)
val notEmptySet: NotEmptySet<Int>? = original.toNotEmptySetOrNull()
println(original) // [1, 2, 3]
println(notEmptySet) // [1, 2, 3]
original.clear()
println(original) // []
println(notEmptySet) // [1, 2, 3]
Content copied to clipboard
You can use the toNotEmptySetOrThrow function for throwing an IllegalArgumentException instead of returning null
when this collection is empty.