Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created October 12, 2020 12:24
Show Gist options
  • Save ch8n/6bf2662787d188c9dba60073be9435c1 to your computer and use it in GitHub Desktop.
Save ch8n/6bf2662787d188c9dba60073be9435c1 to your computer and use it in GitHub Desktop.
map creation functions
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