commonMain.arrow.core.composition.kt Maven / Gradle / Ivy
@file:JvmName("Composition")
package arrow.core
import kotlin.jvm.JvmName
public expect infix fun ((P1, P2) -> IP).andThen(f: (IP) -> R): (P1, P2) -> R
public expect infix fun (() -> IP).andThen(f: (IP) -> R): () -> R
public expect infix fun ((P1) -> IP).andThen(f: (IP) -> R): (P1) -> R
public expect infix fun ((IP) -> R).compose(f: (P1) -> IP): (P1) -> R
© 2015 - 2025 Weber Informatics LLC | Privacy Policy