<< insert | Dictionaries | isKey >> |
tf = isConfigured(d) |
scalar: dictionary object.
scalar logical: true if configured, false if not.
tf = isConfigured(d) returns a logical true if the specified dictionary is configured, and a logical false if it is not.
A dictionary is considered configured when it has assigned types for its keys and values. Adding entries to an unconfigured dictionary will configure it.
names = ["Biil" "John" "Yann"];
wheels = [1 2 3];
d = dictionary(wheels, names)
tf = isConfigured(d)
d2 = dictionary()
tf = isConfigured(d2)
dictionary, configureDictionary, insert, values.
Version | Description |
---|---|
1.5.0 | initial version |
Allan CORNET