Does kotlin support named varargs (or some way to ...
# announcements
j
Does kotlin support named varargs (or some way to reproduce it)? e.g.
fun foo(vararg fields: Any)
which is called with
foo(field1 = "hey", field2 = "there")
. I would expect the
fields
vararg to then be a map of some sort.
🚫 1