<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Obsolete > Dictionary > Dictionary_Delete |
Description
Delete a key/data pair inside a dictionary.
Syntax
n = Dictionary_Delete(pDictionary, KeyName)
Returns
Number.
%TRUE if KeyName has been found (and deleted)
%FALSE if KeyName has not been found
Parameters
Name |
Type |
Optional |
Meaning |
pDictionary |
Numeric |
No |
Pointer to a dictionary. |
KeyName |
String |
No |
Name of the key |
Remarks
Restrictions
See also
This functionality has been made obsolete by newer, better optimized hash table available directly in core instead.
Examples