Dictionaries | dictionary >> |
d = configureDictionary(keyType, valueType) |
Key data type: string scalar or character vector.
Value data type: string scalar or character vector.
scalar: a dictionary object.
d = configureDictionary(keyType, valueType) initializes an empty dictionary that enforces keys of type keyType and values of type valueType.
d1 = configureDictionary("string", "single")
d2 = configureDictionary("cell", "struct")
Version | Description |
---|---|
1.5.0 | initial version |
Allan CORNET