// DOCS NAVIGATION
Módulos da Stdlib — Resumo_
SOURCE: content/docs/reference/06-referencia-rapida.md — 06 Referência Rápida / 12. Módulos da Stdlib — Resumo / Stdlib Summary
| Módulo | Funções Principais / Key Functions |
|---|---|
std.io | print, println, eprint, eprintln, read_line, input, flush |
std.string | len, contains, to_upper, to_lower, trim, substring, replace, split_first, split_last, index_of, concat, is_empty, reverse_str, pad_left, pad_right |
std.math | abs, min, max, clamp, sign, gcd, lcm, sqrt_f, pow_f, floor_f, ceil_f, round_f, sin_f, cos_f, tan_f, log_f, pi, e_const |
std.convert | int_to_string, float_to_string, bool_to_string, string_to_int, string_to_float, int_to_float, float_to_int, string_to_int_or, bool_to_int |
std.collections | list_new, list_push, list_pop, list_len, list_get, list_set, list_sort, list_contains, list_index_of, list_free |
std.random | random_seed, random_int, random_float, random_bool |
std.fs | fs_read, fs_write, fs_append, fs_exists, fs_remove |
std.env | env_get, env_set, env_args_count, env_arg |
std.option | is_some, is_none, option_unwrap, option_unwrap_or |
std.result | is_ok, is_err, result_unwrap, result_unwrap_or, result_unwrap_err |
std.char | is_alpha, is_digit_char, is_whitespace_char, is_alphanumeric, to_upper_char, to_lower_char |
std.time | time_now_millis, time_now_secs, sleep_ms |
std.range | create, len, at, eq, start, end, is_inclusive |