String.this

Constructs the string from a stringish range.

Parameters

S

String type.

str S

Initial string.

allocator Allocator

Allocator.

Throws

$(D_PSYMBOL UTFException).

Precondition: allocator is null.

Examples

auto s = String("\u10437"w);
assert(s == "\u10437");
auto s = String("Отказаться от вина - в этом страшная вина."d);
assert(s == "Отказаться от вина - в этом страшная вина.");

Meta