Function appendByte [src]
Prototype
pub fn appendByte(self: *AccumBuffer, allocator: Allocator, byte: u8) !void Parameters
self: *AccumBufferallocator: Allocatorbyte: u8 Source
pub fn appendByte(self: *AccumBuffer, allocator: Allocator, byte: u8) !void {
try self.buf.append(allocator, byte);
self.len += 1;
}