Join range of multiple values into a string using comma as separator. If range is empty, then the empty string is returned.
assert(equal(IconThemeFile.joinValues(["16x16/actions", "16x16/animations", "16x16/apps"]), "16x16/actions,16x16/animations,16x16/apps")); assert(IconThemeFile.joinValues([""]).empty);
splitValues
See Implementation
Join range of multiple values into a string using comma as separator. If range is empty, then the empty string is returned.