We were also recently thinking about `objarg` para...
# announcements
o
We were also recently thinking about
objarg
parameters for functions 🙂 Similar to
vararg
but for objects. Something like this:
Copy code
fun countryReport(objarg country : Country)
fun test() {
   countryReport(id, code, name)
}
but that was just an idea from a couple of use cases, no design or plans.