com.skillw.pouvoir.util.plugin.Pair.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
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