Stdlib module math/roots.vitl
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.
math/roots.vitl.Family: math
Kind: public stdlib surface
Page style: this reference follows the same “encyclopedic card + portrait + usage contract” logic as the keyword pages, but for stdlib modules.
Summary
- Overview
- Purpose
- Taxonomy
- Implementation profile
- Top-level API inventory
- Position in family
- Declaration map
- Representative signatures
- How to use this module
- User example
- Keyword coverage
- Source shape
- Source landmarks
- Source organization
- Complete API catalog
- Integration boundaries
- Composition guidance
- Relationship table
- Neighbor modules
Overview
| Field | Value |
|---|---|
| Path | math/roots.vitl |
| Family | math |
| Kind | public stdlib surface |
| Line count | 737 |
| Declared procedures | 53 |
| Declared forms/picks | 0 |
`math/roots.vitl` is a public stdlib surface inside the `math` family. It should be read as one focused slice of the broader family responsibility: Arithmetic, algebra, comparison, calculus, geometry, modular arithmetic, number theory, probability, statistics, matrix, and vector helpers.
Purpose
This file should be chosen because of responsibility, not because its name “sounds close enough”. Inside the math family, it carries one focused part of the contract and keeps that responsibility separate from neighboring concerns.
- A scoring engine can compute aggregates in `math` while keeping I/O and transport elsewhere.
- A statistics or matrix chapter should explain the workflow around the computation, not just a single formula.
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.
- Large algorithm surface: this file exposes many procedures and likely acts as a domain toolkit rather than a single thin wrapper.
- Minimal top-level dependencies: the module reads as mostly self-contained from its opening declarations.
- Explicit export surface: the file ends with visible export declarations instead of relying only on implicit namespace discovery.
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.
| Signal | Count | What it suggests |
|---|---|---|
if | 80 | Branching density and local decision-making. |
while | 12 | Loop-heavy or iterative implementation style. |
for | 0 | Collection-style traversal at source level. |
match | 0 | Variant-driven branching or grammar-style decoding. |
let | 76 | Local state and intermediate value density. |
give | 129 | Number of explicit exit points and result shaping. |
Top-level API inventory
| Surface | Items |
|---|---|
| Procedures | abs_int, max_int, min_int, square, cube, square_le, square_eq, cube_le_non_negative, cube_eq_non_negative, pow_int, pow_le_non_negative, pow_eq_non_negative |
| Forms | none declared at top level |
| Picks | none declared at top level |
| Constants | none declared at top level |
| Exports | * |
Imported surfaces
This file does not advertise a top-level `use` surface in its opening declarations. That often means it is either self-contained or an aggregation layer.
Position in family
This file is module 15 of 21 in the math family when ordered by path. By procedure count it ranks 11, and by line count it ranks 2. 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.
| Line | Name | Kind | Role |
|---|---|---|---|
| 1 | vitte/stdlib/math/integer | space | Declares the namespace that anchors this file in the stdlib tree. |
| 11 | abs_int | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 19 | max_int | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 27 | min_int | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 35 | square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 39 | cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 43 | square_le | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 55 | square_eq | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 63 | cube_le_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 80 | cube_eq_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 101 | pow_int | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 121 | pow_le_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 152 | pow_eq_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 192 | sqrt_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 217 | sqrt_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 230 | sqrt_round | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 247 | is_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 256 | prev_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 265 | next_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 278 | cube_root_floor_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 303 | cube_root_ceil_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 316 | cube_root_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 324 | cube_root_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 332 | cube_root_round | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 355 | is_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 360 | prev_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 365 | next_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 374 | iroot_floor_non_negative | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 407 | iroot_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 433 | iroot_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 459 | iroot_round | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 476 | is_perfect_power | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 489 | ilog2_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 505 | ilog2_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 520 | ilog10_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 536 | ilog10_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 551 | ilog_floor | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 567 | ilog_ceil | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 586 | is_power_of_two | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 602 | is_power_of_ten | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 618 | is_power | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 638 | decimal_digits | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 646 | binary_digits | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 658 | distance_to_prev_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 666 | distance_to_next_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 674 | distance_to_nearest_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 685 | distance_to_prev_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 689 | distance_to_next_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 693 | distance_to_nearest_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 704 | is_perfect_square | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 708 | is_perfect_cube | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 712 | roots_version | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 716 | roots_ready | proc | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 720 | roots_selftest | proc | Represents 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 54 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 abs_int(value: int) -> int {(line 11)proc max_int(a: int, b: int) -> int {(line 19)proc min_int(a: int, b: int) -> int {(line 27)proc square(value: int) -> int {(line 35)proc cube(value: int) -> int {(line 39)proc square_le(candidate: int, limit: int) -> bool {(line 43)proc square_eq(candidate: int, value: int) -> bool {(line 55)proc cube_le_non_negative(candidate: int, limit: int) -> bool {(line 63)proc cube_eq_non_negative(candidate: int, value: int) -> bool {(line 80)proc pow_int(base: int, exponent: int) -> int {(line 101)proc pow_le_non_negative(base: int, exponent: int, limit: int) -> bool {(line 121)proc pow_eq_non_negative(base: int, exponent: int, value: int) -> bool {(line 152)proc sqrt_floor(value: int) -> int {(line 192)proc sqrt_ceil(value: int) -> int {(line 217)proc sqrt_round(value: int) -> int {(line 230)proc is_square(value: int) -> bool {(line 247)proc prev_square(value: int) -> int {(line 256)proc next_square(value: int) -> int {(line 265)
The list is intentionally capped here; the source file declares 53 matching signatures in total.
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.
- Read
spaceand top-level imports first so the ownership boundary ofmath/roots.vitlis explicit. - Traverse procedures in source order; the early helpers usually explain the naming and numeric conventions used later.
- Use the source landmarks section below as a table of contents when the file is large.
- 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/math_roots
proc run_example() -> string {
let result = abs_int(1)
let ready: bool = square_le(1, 1)
let failed: bool = false
let stable: bool = ready and true
let fallback: bool = ready or false
let idx: int = 0
while idx < 1 {
set idx = idx + 1
}
if ready {
give "not-ready"
} else {
give "ok"
}
}
export run_example
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.
| Keyword | Present in module source | Used in generated user example |
|---|---|---|
space | yes | yes |
proc | yes | yes |
let | yes | yes |
set | yes | yes |
if | yes | yes |
else | yes | yes |
while | yes | yes |
give | yes | yes |
export | yes | yes |
true | yes | yes |
false | yes | yes |
and | yes | yes |
or | yes | yes |
The generated snippet exercises every detected Vitte keyword used by this module.
Source shape
space vitte/stdlib/math/integer
proc abs_int(value: int) -> int {
if value < 0 {
give -value
} else {
give value
}
}
proc max_int(a: int, b: int) -> int {
if a > b {
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.
- Integer mathematics — roots, logs, powers, digit helpers
- Internal helpers
- Integer square roots
- Integer cube roots
- Generic integer roots
- Integer logarithms
- Power predicates
- Digit helpers
- Distance helpers
- Public aliases
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.
Opening declarations
Top-level items: 1. Procedures: 0. Data surfaces: 0. Constants: 0.
First visible names: vitte/stdlib/math/integer
Internal helpers
Top-level items: 12. Procedures: 12. Data surfaces: 0. Constants: 0.
First visible names: abs_int, max_int, min_int, square, cube, square_le, square_eq, cube_le_non_negative, cube_eq_non_negative, pow_int
Integer square roots
Top-level items: 6. Procedures: 6. Data surfaces: 0. Constants: 0.
First visible names: sqrt_floor, sqrt_ceil, sqrt_round, is_square, prev_square, next_square
Integer cube roots
Top-level items: 8. Procedures: 8. Data surfaces: 0. Constants: 0.
First visible names: cube_root_floor_non_negative, cube_root_ceil_non_negative, cube_root_floor, cube_root_ceil, cube_root_round, is_cube, prev_cube, next_cube
Generic integer roots
Top-level items: 5. Procedures: 5. Data surfaces: 0. Constants: 0.
First visible names: iroot_floor_non_negative, iroot_floor, iroot_ceil, iroot_round, is_perfect_power
Integer logarithms
Top-level items: 6. Procedures: 6. Data surfaces: 0. Constants: 0.
First visible names: ilog2_floor, ilog2_ceil, ilog10_floor, ilog10_ceil, ilog_floor, ilog_ceil
Power predicates
Top-level items: 3. Procedures: 3. Data surfaces: 0. Constants: 0.
First visible names: is_power_of_two, is_power_of_ten, is_power
Digit helpers
Top-level items: 2. Procedures: 2. Data surfaces: 0. Constants: 0.
First visible names: decimal_digits, binary_digits
Distance helpers
Top-level items: 6. Procedures: 6. Data surfaces: 0. Constants: 0.
First visible names: distance_to_prev_square, distance_to_next_square, distance_to_nearest_square, distance_to_prev_cube, distance_to_next_cube, distance_to_nearest_cube
Public aliases
Top-level items: 6. Procedures: 5. Data surfaces: 0. Constants: 0.
First visible names: is_perfect_square, is_perfect_cube, roots_version, roots_ready, roots_selftest, *
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
| Line | Name | Signature | Role |
|---|---|---|---|
| 11 | abs_int | proc abs_int(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 19 | max_int | proc max_int(a: int, b: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 27 | min_int | proc min_int(a: int, b: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 35 | square | proc square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 39 | cube | proc cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 43 | square_le | proc square_le(candidate: int, limit: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 55 | square_eq | proc square_eq(candidate: int, value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 63 | cube_le_non_negative | proc cube_le_non_negative(candidate: int, limit: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 80 | cube_eq_non_negative | proc cube_eq_non_negative(candidate: int, value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 101 | pow_int | proc pow_int(base: int, exponent: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 121 | pow_le_non_negative | proc pow_le_non_negative(base: int, exponent: int, limit: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 152 | pow_eq_non_negative | proc pow_eq_non_negative(base: int, exponent: int, value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 192 | sqrt_floor | proc sqrt_floor(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 217 | sqrt_ceil | proc sqrt_ceil(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 230 | sqrt_round | proc sqrt_round(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 247 | is_square | proc is_square(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 256 | prev_square | proc prev_square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 265 | next_square | proc next_square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 278 | cube_root_floor_non_negative | proc cube_root_floor_non_negative(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 303 | cube_root_ceil_non_negative | proc cube_root_ceil_non_negative(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 316 | cube_root_floor | proc cube_root_floor(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 324 | cube_root_ceil | proc cube_root_ceil(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 332 | cube_root_round | proc cube_root_round(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 355 | is_cube | proc is_cube(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 360 | prev_cube | proc prev_cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 365 | next_cube | proc next_cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 374 | iroot_floor_non_negative | proc iroot_floor_non_negative(value: int, degree: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 407 | iroot_floor | proc iroot_floor(value: int, degree: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 433 | iroot_ceil | proc iroot_ceil(value: int, degree: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 459 | iroot_round | proc iroot_round(value: int, degree: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 476 | is_perfect_power | proc is_perfect_power(value: int, degree: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 489 | ilog2_floor | proc ilog2_floor(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 505 | ilog2_ceil | proc ilog2_ceil(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 520 | ilog10_floor | proc ilog10_floor(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 536 | ilog10_ceil | proc ilog10_ceil(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 551 | ilog_floor | proc ilog_floor(value: int, base: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 567 | ilog_ceil | proc ilog_ceil(value: int, base: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 586 | is_power_of_two | proc is_power_of_two(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 602 | is_power_of_ten | proc is_power_of_ten(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 618 | is_power | proc is_power(value: int, base: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 638 | decimal_digits | proc decimal_digits(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 646 | binary_digits | proc binary_digits(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 658 | distance_to_prev_square | proc distance_to_prev_square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 666 | distance_to_next_square | proc distance_to_next_square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 674 | distance_to_nearest_square | proc distance_to_nearest_square(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 685 | distance_to_prev_cube | proc distance_to_prev_cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 689 | distance_to_next_cube | proc distance_to_next_cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 693 | distance_to_nearest_cube | proc distance_to_nearest_cube(value: int) -> int { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 704 | is_perfect_square | proc is_perfect_square(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 708 | is_perfect_cube | proc is_perfect_cube(value: int) -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 712 | roots_version | proc roots_version() -> string { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 716 | roots_ready | proc roots_ready() -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
| 720 | roots_selftest | proc roots_selftest() -> bool { | Represents one top-level surface in the file contract and should be read as part of the module boundary. |
Exports
| Line | Name | Signature | Role |
|---|---|---|---|
| 737 | * | export * | Re-exports surfaces that the module wants to expose as part of its public boundary. |
Integration boundaries
Within math, 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: Arithmetic, algebra, comparison, calculus, geometry, modular arithmetic, number theory, probability, statistics, matrix, and vector helpers.
- Family architecture role: Use `math` when the transformation itself is the feature. This family exists so algorithmic intent stays visible and testable.
Composition guidance
Choose this module when
- Choose
math/roots.vitlwhen the main question is owned by this module rather than by transport, storage, orchestration, or user-interface code. - A scoring engine can compute aggregates in `math` while keeping I/O and transport elsewhere.
- A statistics or matrix chapter should explain the workflow around the computation, not just a single formula.
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
math. - Check nearby modules such as
math/algebra.vitl,math/arithmetic.vitl,math/arrays.vitlbefore adding convenience wrappers here.
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.
| Neighbor | Procedures | Data surfaces | Why compare it |
|---|---|---|---|
math/algebra.vitl | 14 | 0 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/arithmetic.vitl | 72 | 2 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/arrays.vitl | 83 | 2 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/calculus.vitl | 56 | 3 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/comparison.vitl | 47 | 0 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/complex.vitl | 49 | 0 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/geometry.vitl | 72 | 0 | Shares the same family boundary but carries a distinct slice of responsibility. |
math/logic.vitl | 20 | 0 | Shares the same family boundary but carries a distinct slice of responsibility. |