Dev #280

Merged
altavir merged 99 commits from dev into master 2021-04-16 19:45:55 +03:00
Showing only changes of commit 52a942dbe2 - Show all commits

View File

@ -0,0 +1,9 @@
package space.kscience.kmath.integration
import kotlin.reflect.KClass
public interface IntegrandFeature
public interface Integrand {
public fun <T : IntegrandFeature> getFeature(type: KClass<T>): T? = null
}