com.skillw.asahi.internal.namespacing.infix.linking.InfixPair.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.asahi.internal.namespacing.infix.linking
import com.skillw.asahi.api.annotation.AsahiInfix
import com.skillw.asahi.api.member.parser.infix.namespacing.BaseInfix
/**
* @className ActionPair
*
* @author Glom
* @date 2022/8/9 16:26 Copyright 2022 user.
*/
@AsahiInfix
internal object InfixPair : BaseInfix>(Pair::class.java) {
init {
"key" to { it.first }
"value" to { it.second }
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy