Hash
Hash (Associative array). Variables of the hash type allow you to work with associative arrays or hash tables. Each item in such an array corresponds to a unique key string. Items are addresses by specifying the corresponding key strings.
Operators
| hash of type | Specifying the type of items. |
| * hash | Get the count of items. |
| hash[ name ] | Getting an item by a key string. |
| foreach var,hash | Foreach operator. |
Methods
| hash.clear | Clear a hash. |
| hash.create | Creating an item with this key. |
| hash.del | Delete an item with this key. |
| hash.find | Find an item with this key. |
| hash.ignorecase | Ignoring the letter case of keys. |
| hash.sethashsize | Set the size of a value table. |
Type
| hash | The main structure of the hash. |