Function writeAll [src]
Prototype
pub inline fn writeAll(self: Self, bytes: []const u8) Error!void
Parameters
self: Self
bytes: []const u8
Source
pub inline fn writeAll(self: Self, bytes: []const u8) Error!void {
return @errorCast(self.any().writeAll(bytes));
}