Methods

HashΒΆ

Hash(keys:Arr, values:Arr)

Create a Hash from keys in "keys" and corresponding values in "values"
Source: stdlib.ngs:1777

keys

Keys for the new Hash

values

Values for the new Hash

Returns

Hash

Example

Hash(["a", "b", "c"], [1,2,3])  # {"a": 1, "b": 2, "c": 3}