mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.Io: add doc comments
This commit is contained in:
parent
70af303a2b
commit
20baf049aa
1 changed files with 13 additions and 0 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue