Creates a tuple of type Pair from this and that.
This can be useful for creating Map literals with less noise, for example:
Since Kotlin
1.0Samples
import kotlin.test.*
import java.util.*
fun main() {
val map = mapOf(1 to "x", 2 to "y", -1 to "zz")
println(map)
}
Target: JVMRunning on v.2.1.20