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.

recancel

Asserts that error.Canceled was returned from a prior cancelation point, and "re-arms" the cancelation request, so that error.Canceled will be returned again from the next cancelation point.

For a description of cancelation and cancelation points, see Future.cancel.

Io.recancel
pub fn recancel(io: Io) void

File

lib/std/Io.zig:1336

Code

pub fn recancel(io: Io) void {
    io.vtable.recancel(io.userdata);
}