Is there a function that takes a lambda with one p...
# arrow
l
Is there a function that takes a lambda with one parameter (
(T) -> R
) and another parameter of type
T
and returns a lambda with no parameter (
() -> R
) which when called runs the parameter lambda (
(T) -> R
) with the instance of
T
?
y
I believe
partially1
from partials.kt does this
🔝 2
🙏 1