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

commonMain.it.unibo.tuprolog.utils.Indexed.kt Maven / Gradle / Ivy

There is a newer version: 0.17.4
Show newest version
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