authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-01-05 22:17:55-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-01-08 12:36:07-08:00
log20baf049aac53072d729f5a1791ecad8a927c34d
treeb5a73b0d594bdaff695ed71b33c7dc3dac358465
parent70af303a2b2c787d21e6e49098d801b601fecfb2

std.Io: add doc comments


1 files changed, 13 insertions(+), 0 deletions(-)

lib/std/Io.zig+13
......@@ -1,3 +1,16 @@
1//! A cross-platform interface that abstracts all I/O operations and
2//! concurrency. It includes:
3//! * file system
4//! * networking
5//! * processes
6//! * time and sleeping
7//! * randomness
8//! * async, await, concurrent, and cancel
9//! * concurrent queues
10//! * wait groups and select
11//! * mutexes, futexes, events, and conditions
12//! This interface allows programmers to write optimal, reusable code while
13//! participating in these operations.
114const Io = @This();
215
316const builtin = @import("builtin");