inline fn appendNTimesAssumeCapacity(self: *Self, value: T, n: usize) void

Append a value to the list n times. Does not invalidate pointers. Asserts the capacity is enough. The function is inline so that a comptime-known value parameter will have a more optimal memset codegen in case it has a repeated byte pattern.

Parameters

self: *Self,
value: T,
n: usize,