I don’t know. It’s surprising both ways.
On the one hand, if you’re going to take lambdas with named context parameters seriously, what could it possibly mean to say (x: Int) ?=> Int
save that when you write code to generate the return Int
you have access to x
by name? Why not just say Int ?=> Int
if that’s what you mean?
On the other hand, mysteriously appearing variables that shadow other variables are, well, mysterious. Parameter names are also mysterious, except that you have to explicitly use syntax for them them in order for them to matter.
So, my considered opinion is: ?!?!
I have a similar degree of uncertainty around
def foo(f: (i: Int, s: String) => String)) = ...
I can call it with this ff
as the argument,
val ff: (n: Int, a: String) => String = (a, n) => n*a
which itself is named bizarrely–I swapped the parameter names! But how does that make sense? I see f:
and that matters that it’s called f
and not something else; but I also have i:
and s:
and they don’t matter? It’s…a bit weird, especially if you think of the parallel to named tuples where you could certainly pass (Int, String)
where (i: Int, s: String)
is called for, but you could not pass (n: Int, a: String)
where (i: Int, s: String)
is called for.
So, in summary, ???!?!?!!