the only clear way I could see to use that is by f...
# language-proposals
k
the only clear way I could see to use that is by forcing use of named params on the calling side if you have multiple varargs. I'm not sure if I agree with that, especially because in Kotlin, you could just do
arrayOf(foo1, foo2, foo3)
, which is almost as concise as a vararg of
foo1, foo2, foo3
, and clearly separates out the params