LL_DeleteLike
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Obsolete > LL (Linked lists) > LL_DeleteLike |
This functionality has been made obsolete by newer, better optimized Linked List available directly in core instead.
Description
Removes nodes from the list and frees relative memory.
Deletes all nodes whose name starts with StartItemName.
Syntax
LL_DeleteLike(llRoot, StartItemName)
Returns
None.
Parameters
Name |
Type |
Optional |
Meaning |
llRoot |
Number |
No |
Linked list root handle |
StartItemName |
String |
No |
All nodes whose name start with StartItemName will be deleted |
Remarks
Restrictions
See also
Examples