Function String.capacity

ulong capacity() pure nothrow @property @nogc @safe const;

Returns

String capacity in bytes.

Example

auto s = String("In allem Schreiben ist Schamlosigkeit.");
assert(s.capacity == 38);