single
Returns the single element, or throws an exception if the array is empty or has more than one element.
fun <T> Array<out T>.single(): T(source)
fun main() {
val singleElementArray = arrayOf("only one")
val element = singleElementArray.single()
println(element) // prints "only one"
}