You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A parameterless version of persistentHashMapOf() to avoid creating a useless builder and varargs parameter when the code is just going to create its own builder anyway.
fun <K, V> persistentHashMapOf(): PersistentMap<K, V> = PersistentHashMap.emptyOf<K,V>()
Parameter-less versions of persistentSetOf and persistentListOf() already exist. It seems odd that this is missing.
The text was updated successfully, but these errors were encountered:
FEATURE REQUEST
A parameterless version of
persistentHashMapOf()
to avoid creating a useless builder and varargs parameter when the code is just going to create its own builder anyway.Parameter-less versions of
persistentSetOf
andpersistentListOf()
already exist. It seems odd that this is missing.The text was updated successfully, but these errors were encountered: