hashTableOf

inline fun <K, V> hashTableOf(): Hashtable<K, V>

Return an empty new Hashtable.

Since

1.1.0


inline fun <K, V> hashTableOf(vararg elements: Pair<K, V>): Hashtable<K, V>

Returns a Hashtable of given elements.

Since

1.1.0