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