Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created October 12, 2020 13:22
Show Gist options
  • Save ch8n/6d890e595534dd7c0e43d09a39954007 to your computer and use it in GitHub Desktop.
Save ch8n/6d890e595534dd7c0e43d09a39954007 to your computer and use it in GitHub Desktop.
hashmap stdlib functions kotlin
// Kotlin Standard Library function
fun <K, V> hashMapOf(): HashMap<K, V>
fun <K, V> hashMapOf(vararg pairs: Pair<K, V>): HashMap<K, V>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment