is it possible to make operator overloading for th...
# language-proposals
m
is it possible to make operator overloading for this? Like, I always need to use
toTypedArray
every time i want to translate the list to variable length argument. For example:
Copy code
operator fun <T> whatever(list: List<T>): Array<out T> = list.toTypedArray()
m
Oh, thank you