This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
[Lang Enhancement Proposal] Implement PblDict_T
type
#65
Labels
PblDict_T
type
#65
Affected area by change:
Short Introduction and Summary
Implement the new type
PblDict_T
with the following signature:This type will be a simple array where each item is a
PblKeyValuePair_T
, which represents a pair of akey
(string) andvalue
(any) that may be iterated through and searched through by the function:The Para-C corresponding identifier may be:
PblDict_T
:dict
(alias - though the normal identifierPblDict_T
may also be used)PblKeyValuePair_T
:PblKeyValuePair_T
(C identifiers are going to be the same in Para-C)Is your request related to a problem? Please describe.
The implementation of a dictionary should allow for the proper implementation of the global type dictionary, which will keep track of all types to allow for dynamic casting and conversion using the
PblAny_T
type.Describe alternatives you've considered
None.
Additional context
For this implementation to properly work, the
PblAny_T
must be finished first, which will allow for the Dictionary to allow any value to be passed.PblAny_T
type #66The text was updated successfully, but these errors were encountered: