io.github.dehuckakpyt.telegrambot.template.Templater.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-core Show documentation
Show all versions of telegram-bot-core Show documentation
Kotlin Telegram Bot library
The newest version!
package io.github.dehuckakpyt.telegrambot.template
/**
* Created on 21.08.2023.
*
*
* @author Denis Matytsin
*/
interface Templater {
infix fun String.with(pair: Pair): String = with(mutableMapOf(pair))
fun String.with(vararg pairs: Pair): String = with(mutableMapOf(*pairs))
infix fun String.with(instance: Any): String
companion object
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy