fn addOneAssumeCapacity(self: *Self) *T
Increase length by 1, returning pointer to the new item. Asserts that there is already space for the new item without allocating more. Does not invalidate pointers. The returned pointer becomes invalid when the list resized.
self: *Self,