LL_FindByData
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Obsolete > LL (Linked lists) > LL_FindByData |
This functionality has been made obsolete by newer, better optimized Linked List available directly in core instead.
Description
Returns the list item's handle given its data value.
Syntax
pItem = LL_FindByData(llRoot, ItemData)
Returns
Number.
Zero if not found.
Parameters
Name |
Type |
Optional |
Meaning |
llRoot |
Number |
No |
Linked list root handle |
ItemData |
String |
No |
Data value of the linked list item to be found. |
Remarks
Restrictions
See also
Examples