Created
October 12, 2020 13:18
-
-
Save ch8n/a72ffc2633c27c024a065b1d36516c98 to your computer and use it in GitHub Desktop.
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
fun <K, V> mutableMapOf(vararg pairs: Pair<K, V>): MutableMap<K, V> | |
= LinkedHashMap<K, V>(mapCapacity(pairs.size)) | |
.apply { putAll(pairs) } | |
// resolved with LinkedHashMap only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment