Function writeULEB128 [src]

Alias for std.leb128.writeUleb128

Write a single unsigned integer as unsigned LEB128 to the given writer.

Prototype

pub fn writeUleb128(writer: anytype, arg: anytype) !void

Source

pub fn writeUleb128(writer: anytype, arg: anytype) !void { const Arg = @TypeOf(arg); const Int = switch (Arg) { comptime_int => std.math.IntFittingRange(arg, arg), else => Arg, }; const Value = if (@typeInfo(Int).int.bits < 8) u8 else Int; var value: Value = arg; while (true) { const byte: u8 = @truncate(value & 0x7f); value >>= 7; if (value == 0) { try writer.writeByte(byte); break; } else { try writer.writeByte(byte | 0x80); } } }