Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created October 12, 2020 13:16
Show Gist options
  • Save ch8n/f4a019c524b864581a1bd7a31e932cd8 to your computer and use it in GitHub Desktop.
Save ch8n/f4a019c524b864581a1bd7a31e932cd8 to your computer and use it in GitHub Desktop.
mutablemap creation stdlib function
// Kotlin Standard Library function
fun <K, V> mutableMapOf(): MutableMap<K, V>
fun <K, V> mutableMapOf(vararg pairs: Pair<K, V> ): MutableMap<K, V>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment