...
Code Block | ||||
---|---|---|---|---|
| ||||
FUNCTION xpfGetIntegerMap (mapTableIndex : INTEGER; integerKey : INTEGER) instance : GENERIC |
Use this function to get instance mapped to an integer key. ...The mapping shall be defined before by call to xpxMapInteger(mapTableIndex, integerKey, instance).
Arguments
...
Type | Name | Comment |
INTEGER | mapTableIndexcomments | unique integer id of hash table used to store mapping between integer keys and instances |
INTEGER | integerKey | an integer - unique id of an instance in hash table specified by mapTableIndex |
Return Value
...
Type | Name | Comment |
GENERIC | instancecomments | An instance associated with specified integer key or indeterminate (unset value) if none was associated with the key |
Options
...
Example
...
Code Block | ||
---|---|---|
| ||
<Missing Example> |
...