
This commit updates internal links in the documentation to point to the correct `README.md` files within each category. This ensures that the links function as intended and improves navigation within the documentation.
1.1 KiB
1.1 KiB
List Operations
This section contains documentation for the list operations of ArmaRAMDb that allow for working with ordered collections of items.
Available Functions
- listAdd - Add an item to a list
- listDelete - Delete a list
- listGet - Get items from a list
- listLoad - Load a list from the database
- listRemove - Remove an item from a list
- listSet - Set an item in a list
Example Usage
// Add an item to a list
["myList", ["myItem"]] call ramdb_db_fnc_listAdd;
// Set an item at a specific index
["myList", 0, [myNewValue]] call ramdb_db_fnc_listSet;
// Get an item at a specific index
["myList", 0, "myFunction"] call ramdb_db_fnc_listGet;
// Load all items from a list
["myList", "myFunction"] call ramdb_db_fnc_listLoad;
// Remove an item at a specific index
["myList", 0] call ramdb_db_fnc_listRemove;
// Delete the entire list
["myList"] call ramdb_db_fnc_listDelete;