| ... | @@ -743,7 +743,7 @@ pub fn ArrayListAlignedUnmanaged(comptime T: type, comptime alignment: ?u29) typ | ... | @@ -743,7 +743,7 @@ pub fn ArrayListAlignedUnmanaged(comptime T: type, comptime alignment: ?u29) typ |
| 743 | | 743 | |
| 744 | /// For a nicer API, `items.len` is the length, not the capacity. | 744 | /// For a nicer API, `items.len` is the length, not the capacity. |
| 745 | /// This requires "unsafe" slicing. | 745 | /// This requires "unsafe" slicing. |
| 746 | fn allocatedSlice(self: Self) Slice { | 746 | pub fn allocatedSlice(self: Self) Slice { |
| 747 | return self.items.ptr[0..self.capacity]; | 747 | return self.items.ptr[0..self.capacity]; |
| 748 | } | 748 | } |
| 749 | }; | 749 | }; |