MapCreateΒΆ
MapCreate creates a new map object.
- hMap = MapCreate()
- hMap = MapCreate(nSize)
Return Value
hMap If the function succeeds, the return value is the handle of the newly created map. If the function fails, the return value is 0.
Parameters
- nSize
nSize For best performance, the hash table size should be a prime number. To minimize collisions the size should be roughly 20% larger than the largest anticipated dataset. Default value is 17.
See also
id-1243993