pub fn init(bytes: []const u8) HeaderIterator
pub fn init(bytes: []const u8) HeaderIterator { return .{ .bytes = bytes, .index = std.mem.findPosLinear(u8, bytes, 0, "\r\n").? + 2, .is_trailer = false, }; }