partialApply

fun <I1, O> (I1) -> O.partialApply(value: I1): () -> O

Binds the argument of this function with a constant value.


fun <I1, I2, O> (I1, I2) -> O.partialApply(value: I1): (I2) -> O
fun <I1, I2, I3, O> (I1, I2, I3) -> O.partialApply(value: I1): (I2, I3) -> O
fun <I1, I2, I3, I4, O> (I1, I2, I3, I4) -> O.partialApply(value: I1): (I2, I3, I4) -> O
fun <I1, I2, I3, I4, I5, O> (I1, I2, I3, I4, I5) -> O.partialApply(value: I1): (I2, I3, I4, I5) -> O
fun <I1, I2, I3, I4, I5, I6, O> (I1, I2, I3, I4, I5, I6) -> O.partialApply(value: I1): (I2, I3, I4, I5, I6) -> O

Binds the first argument of this function with a constant value.