KeyValue()
7/14/25Less than 1 minute
KeyValue(any Key, any Value)
Creates a Key Value pair with assigned Key and Value.
Parameters:
| Name | Type | Description |
|---|---|---|
| Key | any | The Key. |
| Value | any | The Value |
Usage
---@type any
local Key;
---@type any
local Value;
local keyvalue = KeyValue(Key, Value);
