std.Io: add doc comments

This commit is contained in:
Andrew Kelley 2026-01-05 22:17:55 -08:00
parent 70af303a2b
commit 20baf049aa

View file

@ -1,3 +1,16 @@
//! A cross-platform interface that abstracts all I/O operations and
//! concurrency. It includes:
//! * file system
//! * networking
//! * processes
//! * time and sleeping
//! * randomness
//! * async, await, concurrent, and cancel
//! * concurrent queues
//! * wait groups and select
//! * mutexes, futexes, events, and conditions
//! This interface allows programmers to write optimal, reusable code while
//! participating in these operations.
const Io = @This();
const builtin = @import("builtin");