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.

checkAnyError

Checks for errors in all streams, prioritizing error.Canceled if it occurred anywhere, and ignoring error.EndOfStream.

MultiReader.checkAnyError
pub fn checkAnyError(mr: *const MultiReader) UnendingError!void

File

lib/std/Io/File/MultiReader.zig:119

Code

pub fn checkAnyError(mr: *const MultiReader) UnendingError!void {
    const contexts = mr.streams.contexts();
    var other: UnendingError!void = {};
    for (contexts) |*context| {
        if (context.err) |err| switch (err) {
            error.Canceled => |e| return e,
            error.EndOfStream => continue,
            else => |e| other = e,
        };
    }
    return other;
}