Returns the value following the name in the list. If the name is not found in the list, or no value follows the name, NoValue is returned.
PList is shorthand for "Property List", which a list of name-value pairs. The name is called the indicator.
findInPlist ( indicator As Name, _ plist As List ) As Any
Intent >findInPlist(:b, {:a, 1, :b, 2, :c, 3}) --> 2
Intent >findInPlist(:d, {:a, 1, :b, 2, :c, 3}) --> NoValue
Intent >findInPlist(:d, {:a, 1, :b, 2, :c, 3, :d}) --> NoValue
Viewing Details: