Created
October 12, 2020 13:16
-
-
Save ch8n/f4a019c524b864581a1bd7a31e932cd8 to your computer and use it in GitHub Desktop.
mutablemap creation stdlib function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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