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.

bufValue

bitcode_writer.bufValue
fn bufValue(value: anytype, comptime min_len: usize) BufType(@TypeOf(value), min_len)

File

lib/std/zig/llvm/bitcode_writer.zig:423

Code

fn bufValue(value: anytype, comptime min_len: usize) BufType(@TypeOf(value), min_len) {
    return switch (@typeInfo(@TypeOf(value))) {
        .comptime_int, .int => @intCast(value),
        .@"enum" => @backingInt(value),
        .bool => @intFromBool(value),
        .@"struct" => @intCast(@as(@Int(.unsigned, @bitSizeOf(@TypeOf(value))), @bitCast(value))),
        else => unreachable,
    };
}