`::f.partial(b = value)`
# language-proposals
i
::f.partial(b = value)
s
why not just
::f(b = value)
?
d
that is already possible with Arrow or funKTionale
👏 2
i
Really? What about
b =
part? Can I use parameter names from the function itself?
d
not
b
, we lost that part,
p1
,
p2
to
pN
I'm starting a prototype for Arrow to autogenerate partial combinations
@partials fun foo(i:Int, j:Int)