is `collection literals` feature still on the tabl...
# language-proposals
d
is
collection literals
feature still on the table? how about new operator?
Copy code
operator fun <T> collection(vararg args: T) = listOf(args)

// usage
val list: List<String> = ["a", "b", "c"]