Stdlib module tests/smoke.vit

This page is a wiki-style reference for one concrete stdlib file. It explains what the file owns, where it fits in the family, and how to decide whether this is the right surface to depend on.

Visual portrait of tests/smoke.vit
Wiki-style portrait for tests/smoke.vit.

Family: tests

Kind: validation module

Page style: this reference follows the same “encyclopedic card + portrait + usage contract” logic as the keyword pages, but for stdlib modules.

Summary

Overview

FieldValue
Pathtests/smoke.vit
Familytests
Kindvalidation module
Line count205
Declared procedures9
Declared forms/picks0

`tests/smoke.vit` is a validation module inside the `tests` family. It should be read as one focused slice of the broader family responsibility: Stdlib-focused smoke and integration validation surfaces.

Purpose

This file should be chosen because of responsibility, not because its name “sounds close enough”. Inside the tests family, it carries one focused part of the contract and keeps that responsibility separate from neighboring concerns.

  • A smoke file should prove the library can still be loaded and exercised through its intended public paths.

Taxonomy

Think of this page as a generated encyclopedia entry rather than a hand-written tutorial. The goal is to show what kind of module this is, how dense it is, and what reading strategy makes sense before depending on it.

  • Medium procedure surface: this file groups several related operations behind one namespace.
  • Narrow dependency fan-in: a small set of imports suggests a focused collaboration surface.
  • Validation-oriented module: expect example flows, smoke checks, or proof that other contracts remain stable.

Implementation profile

This profile is inferred directly from the source text. It does not replace reading the file, but it tells you quickly whether the module is mostly declarative, loop-heavy, branch-heavy, or organized around many small exits.

SignalCountWhat it suggests
if0Branching density and local decision-making.
while0Loop-heavy or iterative implementation style.
for0Collection-style traversal at source level.
match0Variant-driven branching or grammar-style decoding.
let0Local state and intermediate value density.
give9Number of explicit exit points and result shaping.

Top-level API inventory

SurfaceItems
Proceduresstdlib_smoke_core, stdlib_smoke_io, stdlib_smoke_compression, stdlib_smoke_async, stdlib_smoke_crypto, stdlib_smoke_json, stdlib_smoke_path, stdlib_smoke_system, stdlib_smoke_statistics
Formsnone declared at top level
Picksnone declared at top level
Constantsnone declared at top level
Exportsnone declared at top level

Imported surfaces

  • src/vitte/stdlib/core as core use src/vitte/stdlib/core/algorithms as core_algorithms use src/vitte/stdlib/core/concurrency as core_concurrency use src/vitte/stdlib/core/io_helpers as core_io_helpers use src/vitte/stdlib/core/memory as core_memory use src/vitte/stdlib/core/panic as core_panic use src/vitte/stdlib/core/types as core_types use src/vitte/stdlib/core/utils as core_utils use src/vitte/stdlib/io as io use src/vitte/stdlib/io/buffer as io_buffer use src/vitte/stdlib/io/file as io_file use src/vitte/stdlib/io/fileops as io_fileops use src/vitte/stdlib/io/stdio as io_stdio use src/vitte/stdlib/io/stream as io_stream use src/vitte/stdlib/compression as compression use src/vitte/stdlib/compression/algorithms as compression_algorithms use src/vitte/stdlib/compression/brotli as compression_brotli use src/vitte/stdlib/compression/deflate as compression_deflate use src/vitte/stdlib/compression/huffman as compression_huffman use src/vitte/stdlib/compression/interface as compression_interface use src/vitte/stdlib/compression/lz as compression_lz use src/vitte/stdlib/compression/stats as compression_stats use src/vitte/stdlib/async as async_root use src/vitte/stdlib/async/channel as async_channel use src/vitte/stdlib/async/executor as async_executor use src/vitte/stdlib/async/future as async_future use src/vitte/stdlib/crypto as crypto use src/vitte/stdlib/crypto/hash as crypto_hash use src/vitte/stdlib/crypto/hmac as crypto_hmac use src/vitte/stdlib/crypto/keyderivation as crypto_keyderivation use src/vitte/stdlib/crypto/random as crypto_random use src/vitte/stdlib/crypto/utils as crypto_utils use src/vitte/stdlib/json as json use src/vitte/stdlib/json/builder as json_builder use src/vitte/stdlib/json/parse as json_parse use src/vitte/stdlib/json/parser as json_parser use src/vitte/stdlib/json/schema as json_schema use src/vitte/stdlib/json/serialize as json_serialize use src/vitte/stdlib/json/stringify as json_stringify use src/vitte/stdlib/json/types as json_types use src/vitte/stdlib/path as path use src/vitte/stdlib/path/globbing as path_globbing use src/vitte/stdlib/path/manipulation as path_manipulation use src/vitte/stdlib/path/special as path_special use src/vitte/stdlib/path/walker as path_walker use src/vitte/stdlib/strings as strings use src/vitte/stdlib/regex as regex use src/vitte/stdlib/runtime as runtime use src/vitte/stdlib/sysinfo as sysinfo use src/vitte/stdlib/datetime as datetime use src/vitte/stdlib/os as os use src/vitte/stdlib/memory as memory use src/vitte/stdlib/math as math use src/vitte/stdlib/math/algebra as math_algebra use src/vitte/stdlib/math/arithmetic as math_arithmetic use src/vitte/stdlib/math/arrays as math_arrays use src/vitte/stdlib/math/calculus as math_calculus use src/vitte/stdlib/math/comparison as math_comparison use src/vitte/stdlib/math/complex as math_complex use src/vitte/stdlib/math/geometry as math_geometry use src/vitte/stdlib/math/logic as math_logic use src/vitte/stdlib/math/matrix as math_matrix use src/vitte/stdlib/math/modular as math_modular use src/vitte/stdlib/math/number_theory as math_number_theory use src/vitte/stdlib/math/powers as math_powers use src/vitte/stdlib/math/probability as math_probability use src/vitte/stdlib/math/roots as math_roots use src/vitte/stdlib/math/sequences as math_sequences use src/vitte/stdlib/math/sort as math_sort use src/vitte/stdlib/math/statistics as math_statistics use src/vitte/stdlib/math/topology as math_topology use src/vitte/stdlib/math/trigonometry as math_trigonometry use src/vitte/stdlib/math/vector as math_vector use src/vitte/stdlib/statistics/descriptive as statistics_descriptive use src/vitte/stdlib/statistics/distributions as statistics_distributions use src/vitte/stdlib/statistics/datasets as statistics_datasets use src/vitte/stdlib/statistics/hypothesis as statistics_hypothesis use src/vitte/stdlib/statistics/machine_learning as statistics_machine_learning use src/vitte/stdlib/statistics/preprocessing as statistics_preprocessing use src/vitte/stdlib/statistics/sampling as statistics_sampling use src/vitte/stdlib/statistics as statistics_root use src/vitte/stdlib/statistics/time_series as statistics_time_series use src/vitte/stdlib/statistics/utils as statistics_utils use src/vitte/stdlib/statistics/visualization as statistics_visualization proc stdlib_smoke_core

Position in family

This file is module 1 of 1 in the tests family when ordered by path. By procedure count it ranks 1, and by line count it ranks 1. Those ranks are useful as rough signals of breadth, not as quality judgments.

Declaration map

The declaration map turns raw source into a scan-friendly catalog. It is useful when the file is large enough that a reader wants to orient by kinds of surfaces first.

LineNameKindRole
1vitte/stdlib_checked/tests_smokespaceDeclares the namespace that anchors this file in the stdlib tree.
3src/vitte/stdlib/core as coreuseImports a sibling or supporting surface used by the module.
4src/vitte/stdlib/core/algorithms as core_algorithmsuseImports a sibling or supporting surface used by the module.
5src/vitte/stdlib/core/concurrency as core_concurrencyuseImports a sibling or supporting surface used by the module.
6src/vitte/stdlib/core/io_helpers as core_io_helpersuseImports a sibling or supporting surface used by the module.
7src/vitte/stdlib/core/memory as core_memoryuseImports a sibling or supporting surface used by the module.
8src/vitte/stdlib/core/panic as core_panicuseImports a sibling or supporting surface used by the module.
9src/vitte/stdlib/core/types as core_typesuseImports a sibling or supporting surface used by the module.
10src/vitte/stdlib/core/utils as core_utilsuseImports a sibling or supporting surface used by the module.
12src/vitte/stdlib/io as iouseImports a sibling or supporting surface used by the module.
13src/vitte/stdlib/io/buffer as io_bufferuseImports a sibling or supporting surface used by the module.
14src/vitte/stdlib/io/file as io_fileuseImports a sibling or supporting surface used by the module.
15src/vitte/stdlib/io/fileops as io_fileopsuseImports a sibling or supporting surface used by the module.
16src/vitte/stdlib/io/stdio as io_stdiouseImports a sibling or supporting surface used by the module.
17src/vitte/stdlib/io/stream as io_streamuseImports a sibling or supporting surface used by the module.
19src/vitte/stdlib/compression as compressionuseImports a sibling or supporting surface used by the module.
20src/vitte/stdlib/compression/algorithms as compression_algorithmsuseImports a sibling or supporting surface used by the module.
21src/vitte/stdlib/compression/brotli as compression_brotliuseImports a sibling or supporting surface used by the module.
22src/vitte/stdlib/compression/deflate as compression_deflateuseImports a sibling or supporting surface used by the module.
23src/vitte/stdlib/compression/huffman as compression_huffmanuseImports a sibling or supporting surface used by the module.
24src/vitte/stdlib/compression/interface as compression_interfaceuseImports a sibling or supporting surface used by the module.
25src/vitte/stdlib/compression/lz as compression_lzuseImports a sibling or supporting surface used by the module.
26src/vitte/stdlib/compression/stats as compression_statsuseImports a sibling or supporting surface used by the module.
28src/vitte/stdlib/async as async_rootuseImports a sibling or supporting surface used by the module.
29src/vitte/stdlib/async/channel as async_channeluseImports a sibling or supporting surface used by the module.
30src/vitte/stdlib/async/executor as async_executoruseImports a sibling or supporting surface used by the module.
31src/vitte/stdlib/async/future as async_futureuseImports a sibling or supporting surface used by the module.
33src/vitte/stdlib/crypto as cryptouseImports a sibling or supporting surface used by the module.
34src/vitte/stdlib/crypto/hash as crypto_hashuseImports a sibling or supporting surface used by the module.
35src/vitte/stdlib/crypto/hmac as crypto_hmacuseImports a sibling or supporting surface used by the module.
36src/vitte/stdlib/crypto/keyderivation as crypto_keyderivationuseImports a sibling or supporting surface used by the module.
37src/vitte/stdlib/crypto/random as crypto_randomuseImports a sibling or supporting surface used by the module.
38src/vitte/stdlib/crypto/utils as crypto_utilsuseImports a sibling or supporting surface used by the module.
40src/vitte/stdlib/json as jsonuseImports a sibling or supporting surface used by the module.
41src/vitte/stdlib/json/builder as json_builderuseImports a sibling or supporting surface used by the module.
42src/vitte/stdlib/json/parse as json_parseuseImports a sibling or supporting surface used by the module.
43src/vitte/stdlib/json/parser as json_parseruseImports a sibling or supporting surface used by the module.
44src/vitte/stdlib/json/schema as json_schemauseImports a sibling or supporting surface used by the module.
45src/vitte/stdlib/json/serialize as json_serializeuseImports a sibling or supporting surface used by the module.
46src/vitte/stdlib/json/stringify as json_stringifyuseImports a sibling or supporting surface used by the module.
47src/vitte/stdlib/json/types as json_typesuseImports a sibling or supporting surface used by the module.
49src/vitte/stdlib/path as pathuseImports a sibling or supporting surface used by the module.
50src/vitte/stdlib/path/globbing as path_globbinguseImports a sibling or supporting surface used by the module.
51src/vitte/stdlib/path/manipulation as path_manipulationuseImports a sibling or supporting surface used by the module.
52src/vitte/stdlib/path/special as path_specialuseImports a sibling or supporting surface used by the module.
53src/vitte/stdlib/path/walker as path_walkeruseImports a sibling or supporting surface used by the module.
55src/vitte/stdlib/strings as stringsuseImports a sibling or supporting surface used by the module.
56src/vitte/stdlib/regex as regexuseImports a sibling or supporting surface used by the module.
57src/vitte/stdlib/runtime as runtimeuseImports a sibling or supporting surface used by the module.
58src/vitte/stdlib/sysinfo as sysinfouseImports a sibling or supporting surface used by the module.
59src/vitte/stdlib/datetime as datetimeuseImports a sibling or supporting surface used by the module.
60src/vitte/stdlib/os as osuseImports a sibling or supporting surface used by the module.
61src/vitte/stdlib/memory as memoryuseImports a sibling or supporting surface used by the module.
62src/vitte/stdlib/math as mathuseImports a sibling or supporting surface used by the module.
63src/vitte/stdlib/math/algebra as math_algebrauseImports a sibling or supporting surface used by the module.
64src/vitte/stdlib/math/arithmetic as math_arithmeticuseImports a sibling or supporting surface used by the module.
65src/vitte/stdlib/math/arrays as math_arraysuseImports a sibling or supporting surface used by the module.
66src/vitte/stdlib/math/calculus as math_calculususeImports a sibling or supporting surface used by the module.
67src/vitte/stdlib/math/comparison as math_comparisonuseImports a sibling or supporting surface used by the module.
68src/vitte/stdlib/math/complex as math_complexuseImports a sibling or supporting surface used by the module.
69src/vitte/stdlib/math/geometry as math_geometryuseImports a sibling or supporting surface used by the module.
70src/vitte/stdlib/math/logic as math_logicuseImports a sibling or supporting surface used by the module.
71src/vitte/stdlib/math/matrix as math_matrixuseImports a sibling or supporting surface used by the module.
72src/vitte/stdlib/math/modular as math_modularuseImports a sibling or supporting surface used by the module.
73src/vitte/stdlib/math/number_theory as math_number_theoryuseImports a sibling or supporting surface used by the module.
74src/vitte/stdlib/math/powers as math_powersuseImports a sibling or supporting surface used by the module.
75src/vitte/stdlib/math/probability as math_probabilityuseImports a sibling or supporting surface used by the module.
76src/vitte/stdlib/math/roots as math_rootsuseImports a sibling or supporting surface used by the module.
77src/vitte/stdlib/math/sequences as math_sequencesuseImports a sibling or supporting surface used by the module.
78src/vitte/stdlib/math/sort as math_sortuseImports a sibling or supporting surface used by the module.
79src/vitte/stdlib/math/statistics as math_statisticsuseImports a sibling or supporting surface used by the module.
80src/vitte/stdlib/math/topology as math_topologyuseImports a sibling or supporting surface used by the module.
81src/vitte/stdlib/math/trigonometry as math_trigonometryuseImports a sibling or supporting surface used by the module.
82src/vitte/stdlib/math/vector as math_vectoruseImports a sibling or supporting surface used by the module.
84src/vitte/stdlib/statistics/descriptive as statistics_descriptiveuseImports a sibling or supporting surface used by the module.
85src/vitte/stdlib/statistics/distributions as statistics_distributionsuseImports a sibling or supporting surface used by the module.
86src/vitte/stdlib/statistics/datasets as statistics_datasetsuseImports a sibling or supporting surface used by the module.
87src/vitte/stdlib/statistics/hypothesis as statistics_hypothesisuseImports a sibling or supporting surface used by the module.
88src/vitte/stdlib/statistics/machine_learning as statistics_machine_learninguseImports a sibling or supporting surface used by the module.
89src/vitte/stdlib/statistics/preprocessing as statistics_preprocessinguseImports a sibling or supporting surface used by the module.
90src/vitte/stdlib/statistics/sampling as statistics_samplinguseImports a sibling or supporting surface used by the module.
91src/vitte/stdlib/statistics as statistics_rootuseImports a sibling or supporting surface used by the module.
92src/vitte/stdlib/statistics/time_series as statistics_time_seriesuseImports a sibling or supporting surface used by the module.
93src/vitte/stdlib/statistics/utils as statistics_utilsuseImports a sibling or supporting surface used by the module.
94src/vitte/stdlib/statistics/visualization as statistics_visualizationuseImports a sibling or supporting surface used by the module.
96stdlib_smoke_coreprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
107stdlib_smoke_ioprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
116stdlib_smoke_compressionprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
127stdlib_smoke_asyncprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
134stdlib_smoke_cryptoprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
143stdlib_smoke_jsonprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
154stdlib_smoke_pathprocOwns path semantics, traversal, or normalization.
162stdlib_smoke_systemprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
193stdlib_smoke_statisticsprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.

The table is exhaustive for top-level declarations of the selected kinds. This file declares 94 matching surfaces.

Representative signatures

These signatures are shown in source order so the page keeps the feel of a reference manual, not just a keyword cloud.

  • proc stdlib_smoke_core() -> bool { (line 96)
  • proc stdlib_smoke_io() -> bool { (line 107)
  • proc stdlib_smoke_compression() -> bool { (line 116)
  • proc stdlib_smoke_async() -> bool { (line 127)
  • proc stdlib_smoke_crypto() -> bool { (line 134)
  • proc stdlib_smoke_json() -> bool { (line 143)
  • proc stdlib_smoke_path() -> bool { (line 154)
  • proc stdlib_smoke_system() -> bool { (line 162)
  • proc stdlib_smoke_statistics() -> bool { (line 193)

How to use this module

Start by reading the file as an ownership boundary. Ask three questions: what enters this module, what stable types or procedures it exports, and what adjacent module should stay outside of it.

  1. Read space and top-level imports first so the ownership boundary of tests/smoke.vit is explicit.
  2. Traverse procedures in source order; the early helpers usually explain the naming and numeric conventions used later.
  3. Only after that compare neighbor modules, because the right boundary choice matters more than memorizing one helper name.

User example

This example is generated from the actual stdlib module surface. Its job is not to be the smallest snippet possible; its job is to show a realistic consumer-shaped file that exercises the module and mirrors the language keywords the module itself relies on.

space demo/tests_smoke
use vitte/stdlib_checked/tests_smoke
proc run_example() -> bool {
  let stdlib_smoke_core: bool = stdlib_smoke_core()
  let stdlib_smoke_io: bool = stdlib_smoke_io()
  let stdlib_smoke_compression: bool = stdlib_smoke_compression()
  let stdlib_smoke_async: bool = stdlib_smoke_async()
  let stdlib_smoke_crypto: bool = stdlib_smoke_crypto()
  let stdlib_smoke_json: bool = stdlib_smoke_json()
  let stdlib_smoke_path: bool = stdlib_smoke_path()
  let stdlib_smoke_system: bool = stdlib_smoke_system()
  let stdlib_smoke_statistics: bool = stdlib_smoke_statistics()
  let family_count: f64 = 9 as f64
  give stdlib_smoke_core and stdlib_smoke_io and stdlib_smoke_compression and stdlib_smoke_async and stdlib_smoke_crypto and stdlib_smoke_json and stdlib_smoke_path and stdlib_smoke_system and stdlib_smoke_statistics
}

Keyword coverage

This table makes the “all keywords of the module” requirement auditable. It compares the detected Vitte keywords in the source file with the generated consumer example above.

KeywordPresent in module sourceUsed in generated user example
spaceyesyes
useyesyes
procyesyes
giveyesyes
andyesyes
asyesyes

The generated snippet exercises every detected Vitte keyword used by this module.

Source shape

space vitte/stdlib_checked/tests_smoke
use src/vitte/stdlib/core as core
use src/vitte/stdlib/core/algorithms as core_algorithms
use src/vitte/stdlib/core/concurrency as core_concurrency
use src/vitte/stdlib/core/io_helpers as core_io_helpers
use src/vitte/stdlib/core/memory as core_memory
use src/vitte/stdlib/core/panic as core_panic
use src/vitte/stdlib/core/types as core_types
use src/vitte/stdlib/core/utils as core_utils
use src/vitte/stdlib/io as io

The excerpt is not meant to replace the file. It exists to make the module recognizable at first glance, the same way a Wikipedia infobox helps the reader orient before reading the whole article.

Source landmarks

Large files are easier to retain when they have visible landmarks. When the source contains explicit section banners, they are surfaced here; otherwise the first major declarations are used as anchors.

  • Line 1: space vitte/stdlib_checked/tests_smoke
  • Line 3: use src/vitte/stdlib/core as core
  • Line 4: use src/vitte/stdlib/core/algorithms as core_algorithms
  • Line 5: use src/vitte/stdlib/core/concurrency as core_concurrency
  • Line 6: use src/vitte/stdlib/core/io_helpers as core_io_helpers
  • Line 7: use src/vitte/stdlib/core/memory as core_memory
  • Line 8: use src/vitte/stdlib/core/panic as core_panic
  • Line 9: use src/vitte/stdlib/core/types as core_types

Source organization

When a file carries its own internal chaptering, those chapters usually reveal the intended reading order better than a flat symbol list. This section reconstructs that organization from the source itself.

File surfaces

Top-level items: 94. Procedures: 9. Data surfaces: 0. Constants: 0.

First visible names: vitte/stdlib_checked/tests_smoke, src/vitte/stdlib/core as core, src/vitte/stdlib/core/algorithms as core_algorithms, src/vitte/stdlib/core/concurrency as core_concurrency, src/vitte/stdlib/core/io_helpers as core_io_helpers, src/vitte/stdlib/core/memory as core_memory, src/vitte/stdlib/core/panic as core_panic, src/vitte/stdlib/core/types as core_types, src/vitte/stdlib/core/utils as core_utils, src/vitte/stdlib/io as io

Complete API catalog

This catalog is the exhaustive file-level index for the module. It is intentionally closer to a generated encyclopedia appendix than to a tutorial summary.

Procedures

LineNameSignatureRole
96stdlib_smoke_coreproc stdlib_smoke_core() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
107stdlib_smoke_ioproc stdlib_smoke_io() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
116stdlib_smoke_compressionproc stdlib_smoke_compression() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
127stdlib_smoke_asyncproc stdlib_smoke_async() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
134stdlib_smoke_cryptoproc stdlib_smoke_crypto() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
143stdlib_smoke_jsonproc stdlib_smoke_json() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
154stdlib_smoke_pathproc stdlib_smoke_path() -> bool {Owns path semantics, traversal, or normalization.
162stdlib_smoke_systemproc stdlib_smoke_system() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.
193stdlib_smoke_statisticsproc stdlib_smoke_statistics() -> bool {Represents one top-level surface in the file contract and should be read as part of the module boundary.

Imports

LineNameSignatureRole
3src/vitte/stdlib/core as coreuse src/vitte/stdlib/core as coreImports a sibling or supporting surface used by the module.
4src/vitte/stdlib/core/algorithms as core_algorithmsuse src/vitte/stdlib/core/algorithms as core_algorithmsImports a sibling or supporting surface used by the module.
5src/vitte/stdlib/core/concurrency as core_concurrencyuse src/vitte/stdlib/core/concurrency as core_concurrencyImports a sibling or supporting surface used by the module.
6src/vitte/stdlib/core/io_helpers as core_io_helpersuse src/vitte/stdlib/core/io_helpers as core_io_helpersImports a sibling or supporting surface used by the module.
7src/vitte/stdlib/core/memory as core_memoryuse src/vitte/stdlib/core/memory as core_memoryImports a sibling or supporting surface used by the module.
8src/vitte/stdlib/core/panic as core_panicuse src/vitte/stdlib/core/panic as core_panicImports a sibling or supporting surface used by the module.
9src/vitte/stdlib/core/types as core_typesuse src/vitte/stdlib/core/types as core_typesImports a sibling or supporting surface used by the module.
10src/vitte/stdlib/core/utils as core_utilsuse src/vitte/stdlib/core/utils as core_utilsImports a sibling or supporting surface used by the module.
12src/vitte/stdlib/io as iouse src/vitte/stdlib/io as ioImports a sibling or supporting surface used by the module.
13src/vitte/stdlib/io/buffer as io_bufferuse src/vitte/stdlib/io/buffer as io_bufferImports a sibling or supporting surface used by the module.
14src/vitte/stdlib/io/file as io_fileuse src/vitte/stdlib/io/file as io_fileImports a sibling or supporting surface used by the module.
15src/vitte/stdlib/io/fileops as io_fileopsuse src/vitte/stdlib/io/fileops as io_fileopsImports a sibling or supporting surface used by the module.
16src/vitte/stdlib/io/stdio as io_stdiouse src/vitte/stdlib/io/stdio as io_stdioImports a sibling or supporting surface used by the module.
17src/vitte/stdlib/io/stream as io_streamuse src/vitte/stdlib/io/stream as io_streamImports a sibling or supporting surface used by the module.
19src/vitte/stdlib/compression as compressionuse src/vitte/stdlib/compression as compressionImports a sibling or supporting surface used by the module.
20src/vitte/stdlib/compression/algorithms as compression_algorithmsuse src/vitte/stdlib/compression/algorithms as compression_algorithmsImports a sibling or supporting surface used by the module.
21src/vitte/stdlib/compression/brotli as compression_brotliuse src/vitte/stdlib/compression/brotli as compression_brotliImports a sibling or supporting surface used by the module.
22src/vitte/stdlib/compression/deflate as compression_deflateuse src/vitte/stdlib/compression/deflate as compression_deflateImports a sibling or supporting surface used by the module.
23src/vitte/stdlib/compression/huffman as compression_huffmanuse src/vitte/stdlib/compression/huffman as compression_huffmanImports a sibling or supporting surface used by the module.
24src/vitte/stdlib/compression/interface as compression_interfaceuse src/vitte/stdlib/compression/interface as compression_interfaceImports a sibling or supporting surface used by the module.
25src/vitte/stdlib/compression/lz as compression_lzuse src/vitte/stdlib/compression/lz as compression_lzImports a sibling or supporting surface used by the module.
26src/vitte/stdlib/compression/stats as compression_statsuse src/vitte/stdlib/compression/stats as compression_statsImports a sibling or supporting surface used by the module.
28src/vitte/stdlib/async as async_rootuse src/vitte/stdlib/async as async_rootImports a sibling or supporting surface used by the module.
29src/vitte/stdlib/async/channel as async_channeluse src/vitte/stdlib/async/channel as async_channelImports a sibling or supporting surface used by the module.
30src/vitte/stdlib/async/executor as async_executoruse src/vitte/stdlib/async/executor as async_executorImports a sibling or supporting surface used by the module.
31src/vitte/stdlib/async/future as async_futureuse src/vitte/stdlib/async/future as async_futureImports a sibling or supporting surface used by the module.
33src/vitte/stdlib/crypto as cryptouse src/vitte/stdlib/crypto as cryptoImports a sibling or supporting surface used by the module.
34src/vitte/stdlib/crypto/hash as crypto_hashuse src/vitte/stdlib/crypto/hash as crypto_hashImports a sibling or supporting surface used by the module.
35src/vitte/stdlib/crypto/hmac as crypto_hmacuse src/vitte/stdlib/crypto/hmac as crypto_hmacImports a sibling or supporting surface used by the module.
36src/vitte/stdlib/crypto/keyderivation as crypto_keyderivationuse src/vitte/stdlib/crypto/keyderivation as crypto_keyderivationImports a sibling or supporting surface used by the module.
37src/vitte/stdlib/crypto/random as crypto_randomuse src/vitte/stdlib/crypto/random as crypto_randomImports a sibling or supporting surface used by the module.
38src/vitte/stdlib/crypto/utils as crypto_utilsuse src/vitte/stdlib/crypto/utils as crypto_utilsImports a sibling or supporting surface used by the module.
40src/vitte/stdlib/json as jsonuse src/vitte/stdlib/json as jsonImports a sibling or supporting surface used by the module.
41src/vitte/stdlib/json/builder as json_builderuse src/vitte/stdlib/json/builder as json_builderImports a sibling or supporting surface used by the module.
42src/vitte/stdlib/json/parse as json_parseuse src/vitte/stdlib/json/parse as json_parseImports a sibling or supporting surface used by the module.
43src/vitte/stdlib/json/parser as json_parseruse src/vitte/stdlib/json/parser as json_parserImports a sibling or supporting surface used by the module.
44src/vitte/stdlib/json/schema as json_schemause src/vitte/stdlib/json/schema as json_schemaImports a sibling or supporting surface used by the module.
45src/vitte/stdlib/json/serialize as json_serializeuse src/vitte/stdlib/json/serialize as json_serializeImports a sibling or supporting surface used by the module.
46src/vitte/stdlib/json/stringify as json_stringifyuse src/vitte/stdlib/json/stringify as json_stringifyImports a sibling or supporting surface used by the module.
47src/vitte/stdlib/json/types as json_typesuse src/vitte/stdlib/json/types as json_typesImports a sibling or supporting surface used by the module.
49src/vitte/stdlib/path as pathuse src/vitte/stdlib/path as pathImports a sibling or supporting surface used by the module.
50src/vitte/stdlib/path/globbing as path_globbinguse src/vitte/stdlib/path/globbing as path_globbingImports a sibling or supporting surface used by the module.
51src/vitte/stdlib/path/manipulation as path_manipulationuse src/vitte/stdlib/path/manipulation as path_manipulationImports a sibling or supporting surface used by the module.
52src/vitte/stdlib/path/special as path_specialuse src/vitte/stdlib/path/special as path_specialImports a sibling or supporting surface used by the module.
53src/vitte/stdlib/path/walker as path_walkeruse src/vitte/stdlib/path/walker as path_walkerImports a sibling or supporting surface used by the module.
55src/vitte/stdlib/strings as stringsuse src/vitte/stdlib/strings as stringsImports a sibling or supporting surface used by the module.
56src/vitte/stdlib/regex as regexuse src/vitte/stdlib/regex as regexImports a sibling or supporting surface used by the module.
57src/vitte/stdlib/runtime as runtimeuse src/vitte/stdlib/runtime as runtimeImports a sibling or supporting surface used by the module.
58src/vitte/stdlib/sysinfo as sysinfouse src/vitte/stdlib/sysinfo as sysinfoImports a sibling or supporting surface used by the module.
59src/vitte/stdlib/datetime as datetimeuse src/vitte/stdlib/datetime as datetimeImports a sibling or supporting surface used by the module.
60src/vitte/stdlib/os as osuse src/vitte/stdlib/os as osImports a sibling or supporting surface used by the module.
61src/vitte/stdlib/memory as memoryuse src/vitte/stdlib/memory as memoryImports a sibling or supporting surface used by the module.
62src/vitte/stdlib/math as mathuse src/vitte/stdlib/math as mathImports a sibling or supporting surface used by the module.
63src/vitte/stdlib/math/algebra as math_algebrause src/vitte/stdlib/math/algebra as math_algebraImports a sibling or supporting surface used by the module.
64src/vitte/stdlib/math/arithmetic as math_arithmeticuse src/vitte/stdlib/math/arithmetic as math_arithmeticImports a sibling or supporting surface used by the module.
65src/vitte/stdlib/math/arrays as math_arraysuse src/vitte/stdlib/math/arrays as math_arraysImports a sibling or supporting surface used by the module.
66src/vitte/stdlib/math/calculus as math_calculususe src/vitte/stdlib/math/calculus as math_calculusImports a sibling or supporting surface used by the module.
67src/vitte/stdlib/math/comparison as math_comparisonuse src/vitte/stdlib/math/comparison as math_comparisonImports a sibling or supporting surface used by the module.
68src/vitte/stdlib/math/complex as math_complexuse src/vitte/stdlib/math/complex as math_complexImports a sibling or supporting surface used by the module.
69src/vitte/stdlib/math/geometry as math_geometryuse src/vitte/stdlib/math/geometry as math_geometryImports a sibling or supporting surface used by the module.
70src/vitte/stdlib/math/logic as math_logicuse src/vitte/stdlib/math/logic as math_logicImports a sibling or supporting surface used by the module.
71src/vitte/stdlib/math/matrix as math_matrixuse src/vitte/stdlib/math/matrix as math_matrixImports a sibling or supporting surface used by the module.
72src/vitte/stdlib/math/modular as math_modularuse src/vitte/stdlib/math/modular as math_modularImports a sibling or supporting surface used by the module.
73src/vitte/stdlib/math/number_theory as math_number_theoryuse src/vitte/stdlib/math/number_theory as math_number_theoryImports a sibling or supporting surface used by the module.
74src/vitte/stdlib/math/powers as math_powersuse src/vitte/stdlib/math/powers as math_powersImports a sibling or supporting surface used by the module.
75src/vitte/stdlib/math/probability as math_probabilityuse src/vitte/stdlib/math/probability as math_probabilityImports a sibling or supporting surface used by the module.
76src/vitte/stdlib/math/roots as math_rootsuse src/vitte/stdlib/math/roots as math_rootsImports a sibling or supporting surface used by the module.
77src/vitte/stdlib/math/sequences as math_sequencesuse src/vitte/stdlib/math/sequences as math_sequencesImports a sibling or supporting surface used by the module.
78src/vitte/stdlib/math/sort as math_sortuse src/vitte/stdlib/math/sort as math_sortImports a sibling or supporting surface used by the module.
79src/vitte/stdlib/math/statistics as math_statisticsuse src/vitte/stdlib/math/statistics as math_statisticsImports a sibling or supporting surface used by the module.
80src/vitte/stdlib/math/topology as math_topologyuse src/vitte/stdlib/math/topology as math_topologyImports a sibling or supporting surface used by the module.
81src/vitte/stdlib/math/trigonometry as math_trigonometryuse src/vitte/stdlib/math/trigonometry as math_trigonometryImports a sibling or supporting surface used by the module.
82src/vitte/stdlib/math/vector as math_vectoruse src/vitte/stdlib/math/vector as math_vectorImports a sibling or supporting surface used by the module.
84src/vitte/stdlib/statistics/descriptive as statistics_descriptiveuse src/vitte/stdlib/statistics/descriptive as statistics_descriptiveImports a sibling or supporting surface used by the module.
85src/vitte/stdlib/statistics/distributions as statistics_distributionsuse src/vitte/stdlib/statistics/distributions as statistics_distributionsImports a sibling or supporting surface used by the module.
86src/vitte/stdlib/statistics/datasets as statistics_datasetsuse src/vitte/stdlib/statistics/datasets as statistics_datasetsImports a sibling or supporting surface used by the module.
87src/vitte/stdlib/statistics/hypothesis as statistics_hypothesisuse src/vitte/stdlib/statistics/hypothesis as statistics_hypothesisImports a sibling or supporting surface used by the module.
88src/vitte/stdlib/statistics/machine_learning as statistics_machine_learninguse src/vitte/stdlib/statistics/machine_learning as statistics_machine_learningImports a sibling or supporting surface used by the module.
89src/vitte/stdlib/statistics/preprocessing as statistics_preprocessinguse src/vitte/stdlib/statistics/preprocessing as statistics_preprocessingImports a sibling or supporting surface used by the module.
90src/vitte/stdlib/statistics/sampling as statistics_samplinguse src/vitte/stdlib/statistics/sampling as statistics_samplingImports a sibling or supporting surface used by the module.
91src/vitte/stdlib/statistics as statistics_rootuse src/vitte/stdlib/statistics as statistics_rootImports a sibling or supporting surface used by the module.
92src/vitte/stdlib/statistics/time_series as statistics_time_seriesuse src/vitte/stdlib/statistics/time_series as statistics_time_seriesImports a sibling or supporting surface used by the module.
93src/vitte/stdlib/statistics/utils as statistics_utilsuse src/vitte/stdlib/statistics/utils as statistics_utilsImports a sibling or supporting surface used by the module.
94src/vitte/stdlib/statistics/visualization as statistics_visualizationuse src/vitte/stdlib/statistics/visualization as statistics_visualizationImports a sibling or supporting surface used by the module.

Integration boundaries

Within tests, this file should remain focused. If a future helper changes the host boundary, scheduling boundary, or data-shape boundary, it probably belongs in a neighbor module instead of being added here by convenience.

  • Family responsibility: Stdlib-focused smoke and integration validation surfaces.
  • Family architecture role: This family exists to prove that the documented stdlib surfaces keep behaving as promised.

Composition guidance

Choose this module when

  • Choose tests/smoke.vit when the main question is owned by this module rather than by transport, storage, orchestration, or user-interface code.
  • A smoke file should prove the library can still be loaded and exercised through its intended public paths.

Pause before extending it when

  • Avoid extending this file when the new helper mostly changes the boundary to host I/O, runtime coordination, or foreign integration instead of staying inside tests.
  • Do not move production logic into this file just because the test already mentions it; keep proof and implementation separate.

Relationship table

This table keeps the page closer to a real encyclopedia entry: a module is easier to understand when compared with its nearest alternatives in the same family.

NeighborProceduresData surfacesWhy compare it

Neighbor modules

  • No close sibling module found in the same family bucket.