Hash_Exists

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > Data Structures > Hash Table >

Hash_Exists

 

Description

 

Check if sKey exists inside an Hash Table container

 

Syntax

 

n = Hash_Exists(pHash, sKey)

 

Returns

 

%TRUE / %FALSE

 

Parameters

 

Name

Type

Optional

Meaning

pHash

Number

No

Handle of a Hash Table returned by Hash_New

sKey

String

No

Unique key

 

Remarks

 

Restrictions

 

sKey is case sensitive.

sKey cannot contains nulls

 

See also

 

Examples