commonMain.functions.Producer.kt Maven / Gradle / Ivy
package kt.mobius.functions
/** Interface for producing values. */
fun interface Producer {
fun get(): V
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy
package kt.mobius.functions
/** Interface for producing values. */
fun interface Producer {
fun get(): V
}