commonMain.it.unibo.tuprolog.utils.Indexed.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-metadata Show documentation
Show all versions of core-metadata Show documentation
Multi-platform Prolog environment, in Kotlin
package it.unibo.tuprolog.utils
interface Indexed {
val index: K
val value: T
operator fun component1(): K = index
operator fun component2(): T = value
fun map(mapper: (T) -> R): Indexed
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy