Standard Library
Import std to use the standard library:
Frequently used value types such as String, Vector, Path, and Duration are available directly
from std. Broader APIs are grouped by purpose:
std.collectionprovidesVector,HashMap, andHashSet.std.fs,std.io, andstd.processprovide hosted-system operations; file reads also have a focused async entry.std.pathmanipulates path bytes without accessing the filesystem.std.timeandstd.randomprovide clocks, durations, system entropy, and seeded generators.std.debugandpanicprovide diagnostics and unrecoverable process termination.
The standard library follows normal Jiang ownership. Owned results are released automatically, borrowed
views cannot outlive their source, and recoverable failures use T@E.
Domain, Task, and coroutine are language-level concurrency features from core; std does not wrap
them in a second async API. Continue with Functions and Tasks.