isConfigured
Check if dictionary has types assigned to keys and values.
📝Syntax
tf = isConfigured(d)
📥Input Arguments
Parameter Description
d scalar: dictionary object.
📤Output Arguments
Parameter Description
tf scalar logical: true if configured, false if not.
📄Description

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.

💡Examples
names = ["Biil" "John" "Yann"];
wheels = [1 2 3];
d = dictionary(wheels, names)
tf = isConfigured(d)
d2 = dictionary()
tf = isConfigured(d2)
🔗See Also
dictionaryconfigureDictionaryinsertvalues
🕔Version History
Version Description
1.5.0 initial version
Edit this page on GitHub