asdasdasdasd

Former-commit-id: 2b3c0584c6
This commit is contained in:
Jarred Sumner
2021-05-10 20:05:53 -07:00
parent 166c353ddb
commit fc75a0dea6
16 changed files with 1374 additions and 95 deletions

View File

@@ -106,9 +106,6 @@ pub const MutableString = struct {
try self.list.ensureUnusedCapacity(self.allocator, amount);
}
pub fn deinit(self: *MutableString) !void {
self.list.deinit(self.allocator);
}
pub fn appendChar(self: *MutableString, char: u8) callconv(.Inline) !void {
try self.list.append(self.allocator, char);
}