asdasdasdasd

This commit is contained in:
Jarred Sumner
2021-05-10 20:05:53 -07:00
parent b7d8fe2f35
commit 2b3c0584c6
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);
}