All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.makeevrserg.mobilex.di.Factory.kt Maven / Gradle / Ivy

The newest version!
package com.makeevrserg.mobilex.di

/**
 * [Factory] is a fun interface which can build data for your classes
 *
 * It's look similar to [Provider] but it's more convenient to use different naming for this two
 */
fun interface Factory {
    fun create(): T
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy