Created
October 12, 2020 12:33
-
-
Save ch8n/4ea8d866d36999b209ff59dfa95270ee to your computer and use it in GitHub Desktop.
map creation standard 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> mapOf(): Map<K, V> | |
fun <K, V> mapOf(pair: Pair<K, V>): Map<K, V> | |
fun <K, V> mapOf(vararg pairs: Pair<K, V>): Map<K, V> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment