Is there an ideomatic way to do this: ``` private ...
# announcements
d
Is there an ideomatic way to do this:
Copy code
private fun kwargs(vararg args: Pair<String, Any?>): Map<String, Any> =
			args.filter { it.second != null }.toMap()
toMap
currently gives me
Map<String, Any?>
...