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.

pushWithStateAssumeCapacity

Standalone function for working with a fixed-size buffer.

BitStack.pushWithStateAssumeCapacity
pub fn pushWithStateAssumeCapacity(buf: []u8, bit_len: *usize, b: u1) void

File

lib/std/BitStack.zig:46

Code

pub fn pushWithStateAssumeCapacity(buf: []u8, bit_len: *usize, b: u1) void {
    const byte_index = bit_len.* >> 3;
    const bit_index = @as(u3, @intCast(bit_len.* & 7));

    buf[byte_index] &= ~(@as(u8, 1) << bit_index);
    buf[byte_index] |= @as(u8, b) << bit_index;

    bit_len.* += 1;
}