Hashtable.keyValuePairs

Get an array with the existing key-value pairs in the hashtable.

struct Hashtable(K, V)
Array!(Tuple!(K, "key", V, "value"))
keyValuePairs
(
this _
)
()

Return Value

Type: Array!(Tuple!(K, "key", V, "value"))

an Array!(Tuple!(K, "key", V, "value")) array of key-value pairs

Complexity: O(length).

Meta