Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

splatByte

Writes the same byte many times, allowing short writes.

Does maximum of one underlying VTable.drain.

Writer.splatByte
pub fn splatByte(w: *Writer, byte: u8, n: usize) Error!usize

File

lib/std/Io/Writer.zig:838

Code

pub fn splatByte(w: *Writer, byte: u8, n: usize) Error!usize {
    if (w.end + n <= w.buffer.len) {
        @branchHint(.likely);
        @memset(w.buffer[w.end..][0..n], byte);
        w.end += n;
        return n;
    }
    return writeSplat(w, &.{&.{byte}}, n);
}