com.skillw.pouvoir.util.plugin.Pair.kt Maven / Gradle / Ivy
package com.skillw.pouvoir.util.plugin
// Kotlin's Pair will be relocated....
// So this class is here.
data class Pair(val key: K, val value: V)
infix fun A.to(that: B): Pair = Pair(this, that)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy