String.capacity

struct String
@property const @nogc nothrow pure @safe
size_t
capacity
()

Return Value

Type: size_t

String capacity in bytes.

Examples

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

Meta