You can pass a variable number of arguments to a function by declaring the function with a vararg parameter . In Kotlin, a vararg parameter of type T is internally represented as an array of type T ( Array<T> ) inside the function body.3 Mar 2018
You can pass a variable number of arguments to a function by declaring the function with a vararg parameter . In Kotlin, a vararg parameter of type T is internally represented as an array of type T ( Array<T> ) inside the function body.3 Mar 2018