Function IconThemeFile.joinValues
Join range of multiple values into a string using comma as separator. If range is empty, then the empty string is returned.
string joinValues(Range)
(
Range values
)
if (isInputRange!Range && isSomeString!(ElementType!Range));
See Also
Example
assert(equal(IconThemeFile .joinValues(["16x16/actions", "16x16/animations", "16x16/apps"]), "16x16/actions,16x16/animations,16x16/apps"));
assert(IconThemeFile .joinValues([""]) .empty);