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