A basic hashtable implemented in the Linden Scripting Language
Usage:
- list data_items = init_table(data_items)
- data_items = insert("key", "data_string", data_items)
- string search_result = search("key", data_items); // would return "data_string"; returns NULL_STRING if could not find key.