Function stringifySeparatedBy

Converts all elements in range into a string separated by separator.

string stringifySeparatedBy(Range, S) (
  Range range,
  S sep
)
if (from.std.traits.isSomeString!S);

string stringifySeparatedBy(Range, S) (
  Range range,
  S sep
)
if (from.std.traits.isSomeChar!S);

Parameters

NameDescription
range an input range
sep string/char to be used as seperator, default is empty.

Returns

New string

Since

0.0.1