Stdlib module path.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.

Visual portrait of path.vitl
Wiki-style portrait for path.vitl.

Family: path

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

FieldValue
Pathpath.vitl
Familypath
Kindpublic stdlib surface
Line count1066
Declared procedures79
Declared forms/picks6

`path.vitl` is a public stdlib surface inside the `path` family. It should be read as one focused slice of the broader family responsibility: Path manipulation, special locations, walkers, and globbing.

Purpose

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

  • Use this module when bytes or paths cross a host boundary and architecture must keep that boundary visible.
  • A project root can be normalized before any file is read.
  • A walker can enumerate source files while parsing and diagnostics remain elsewhere.

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.
  • Owns domain vocabulary: the module declares data shapes in addition to executable helpers, so its types are part of the contract.
  • Has tuning constants: part of the module behavior is controlled by named constants that document default precision, limits, or policy.
  • 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.

SignalCountWhat it suggests
if102Branching density and local decision-making.
while30Loop-heavy or iterative implementation style.
for0Collection-style traversal at source level.
match5Variant-driven branching or grammar-style decoding.
let152Local state and intermediate value density.
give144Number of explicit exit points and result shaping.

Top-level API inventory

SurfaceItems
Procedureslistdir, getenv, getcwd, setenv, access, stat, lstat, _path_slice, _path_strip_trailing_separator, _path_split, _path_join_parts, _path_remove_last_component
FormsPath, PathWalker, PathLibraryManifest, PathLibraryHealth, PathLibrarySummary, FileStat
Picksnone declared at top level
ConstantsPATH_SEPARATOR, PATH_DELIMITER, S_ISREG, S_ISDIR, S_ISLNK
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 1 of 5 in the path 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/pathspaceDeclares the namespace that anchors this file in the stdlib tree.
7PATH_SEPARATORconstDefines a named constant reused across the module.
8PATH_DELIMITERconstDefines a named constant reused across the module.
10PathformIntroduces a structured data shape that other procedures can exchange.
15PathWalkerformIntroduces a structured data shape that other procedures can exchange.
21PathLibraryManifestformIntroduces a structured data shape that other procedures can exchange.
27PathLibraryHealthformIntroduces a structured data shape that other procedures can exchange.
36PathLibrarySummaryformIntroduces a structured data shape that other procedures can exchange.
41FileStatformIntroduces a structured data shape that other procedures can exchange.
45S_ISREGconstDefines a named constant reused across the module.
46S_ISDIRconstDefines a named constant reused across the module.
47S_ISLNKconstDefines a named constant reused across the module.
49listdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
53getenvprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
57getcwdprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
61setenvprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
65accessprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
69statprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
75lstatprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
82_path_sliceprocOwns path semantics, traversal, or normalization.
93_path_strip_trailing_separatorprocOwns path semantics, traversal, or normalization.
107_path_splitprocOwns path semantics, traversal, or normalization.
133_path_join_partsprocOwns path semantics, traversal, or normalization.
158_path_remove_last_componentprocOwns path semantics, traversal, or normalization.
171_path_segment_matchesprocOwns path semantics, traversal, or normalization.
215_path_match_partsprocOwns path semantics, traversal, or normalization.
245_path_collect_recursiveprocOwns path semantics, traversal, or normalization.
274_join_stringsprocOwns path semantics, traversal, or normalization.
287_get_env_variableprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
295path_versionprocOwns path semantics, traversal, or normalization.
299path_nameprocOwns path semantics, traversal, or normalization.
303path_module_countprocOwns path semantics, traversal, or normalization.
307path_modulesprocOwns path semantics, traversal, or normalization.
316path_manifestprocOwns path semantics, traversal, or normalization.
324path_readyprocOwns path semantics, traversal, or normalization.
328path_healthprocOwns path semantics, traversal, or normalization.
339path_summaryprocOwns path semantics, traversal, or normalization.
346path_selftestprocOwns path semantics, traversal, or normalization.
356path_newprocOwns path semantics, traversal, or normalization.
363path_normalizeprocOwns path semantics, traversal, or normalization.
404path_resolveprocOwns path semantics, traversal, or normalization.
415path_absoluteprocOwns path semantics, traversal, or normalization.
419path_relativeprocOwns path semantics, traversal, or normalization.
461path_get_parentprocOwns path semantics, traversal, or normalization.
497path_get_filenameprocOwns path semantics, traversal, or normalization.
514path_get_basenameprocOwns path semantics, traversal, or normalization.
518path_get_stemprocOwns path semantics, traversal, or normalization.
532path_get_extensionprocOwns path semantics, traversal, or normalization.
547path_get_directoryprocOwns path semantics, traversal, or normalization.
551path_get_rootprocOwns path semantics, traversal, or normalization.
559path_joinprocOwns path semantics, traversal, or normalization.
586path_join_multiprocOwns path semantics, traversal, or normalization.
596path_with_extensionprocOwns path semantics, traversal, or normalization.
617path_with_filenameprocOwns path semantics, traversal, or normalization.
626path_existsprocOwns path semantics, traversal, or normalization.
630path_is_fileprocOwns path semantics, traversal, or normalization.
636path_is_dirprocOwns path semantics, traversal, or normalization.
642path_is_symlinkprocOwns path semantics, traversal, or normalization.
648path_is_absoluteprocOwns path semantics, traversal, or normalization.
657path_is_relativeprocOwns path semantics, traversal, or normalization.
664path_is_hiddenprocOwns path semantics, traversal, or normalization.
673path_equalsprocOwns path semantics, traversal, or normalization.
677path_starts_withprocOwns path semantics, traversal, or normalization.
693path_ends_withprocOwns path semantics, traversal, or normalization.
712path_matchesprocOwns path semantics, traversal, or normalization.
720path_globprocOwns path semantics, traversal, or normalization.
735path_glob_recursiveprocOwns path semantics, traversal, or normalization.
740path_walkprocOwns path semantics, traversal, or normalization.
765path_walk_recursiveprocOwns path semantics, traversal, or normalization.
773path_walker_nextprocOwns path semantics, traversal, or normalization.
782path_walker_has_nextprocOwns path semantics, traversal, or normalization.
787path_cleanprocOwns path semantics, traversal, or normalization.
791path_canonicalizeprocOwns path semantics, traversal, or normalization.
795path_simplifyprocOwns path semantics, traversal, or normalization.
799path_expand_homeprocOwns path semantics, traversal, or normalization.
815path_expand_envprocOwns path semantics, traversal, or normalization.
868home_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
890temp_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
909current_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
917config_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
925cache_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
933desktop_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
941documents_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
949downloads_dirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
958get_path_envprocOwns path semantics, traversal, or normalization.
988find_in_pathprocOwns path semantics, traversal, or normalization.
1014add_to_pathprocOwns path semantics, traversal, or normalization.
1032remove_from_pathprocOwns path semantics, traversal, or normalization.
1051path_segmentsprocOwns path semantics, traversal, or normalization.
1055path_depthprocOwns path semantics, traversal, or normalization.
1059path_reportprocOwns path semantics, traversal, or normalization.

The table is exhaustive for top-level declarations of the selected kinds. This file declares 91 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.

  • const PATH_SEPARATOR: string = "/" (line 7)
  • const PATH_DELIMITER: string = ":" (line 8)
  • form Path { (line 10)
  • form PathWalker { (line 15)
  • form PathLibraryManifest { (line 21)
  • form PathLibraryHealth { (line 27)
  • form PathLibrarySummary { (line 36)
  • form FileStat { (line 41)
  • const S_ISREG: i32 = 1 (line 45)
  • const S_ISDIR: i32 = 2 (line 46)
  • const S_ISLNK: i32 = 4 (line 47)
  • proc listdir(root: string) -> [string] { (line 49)
  • proc getenv(name: string) -> string { (line 53)
  • proc getcwd() -> string { (line 57)
  • proc setenv(name: string, value: string, overwrite: i32) -> i32 { (line 61)
  • proc access(p: string, mode: i32) -> i32 { (line 65)
  • proc stat(p: string) -> FileStat { (line 69)
  • proc lstat(p: string) -> FileStat { (line 75)

The list is intentionally capped here; the source file declares 90 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.

  1. Read space and top-level imports first so the ownership boundary of path.vitl is explicit.
  2. Scan constants before procedures; they often encode precision, limits, or policy assumptions that explain later behavior.
  3. Read declared forms and picks before algorithms so the data vocabulary is stable in your head.
  4. Traverse procedures in source order; the early helpers usually explain the naming and numeric conventions used later.
  5. Use the source landmarks section below as a table of contents when the file is large.

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/path
const ROOT: string = "src"
form PathRun {
  pattern: string,
  ready: bool
}
proc run_example() -> PathRun {
  let entries = path_glob("src/*.vitl")
  let ready: bool = path_selftest() == 0
  let stable: bool = ready and entries.len >= 0
  if not ready {
    give PathRun { pattern: "not-ready", ready: false }
  } else {
    give PathRun { pattern: "src/**/*.vitl", ready: true }
  }
}
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.

KeywordPresent in module sourceUsed in generated user example
spaceyesyes
constyesyes
formyesyes
procyesyes
letyesyes
setyesno
ifyesyes
elseyesyes
whileyesno
matchyesno
giveyesyes
entryyesno
exportyesyes
trueyesyes
andyesyes
oryesno
notyesyes
asyesno

Keywords still not exercised directly in the generated snippet: set, while, match, entry, or, as. The page still lists them here so the gap is visible.

Source shape

space vitte/path
const PATH_SEPARATOR: string = "/"
const PATH_DELIMITER: string = ":"
form Path {
    path_str: string,
    components: [string]
}
form PathWalker {
    root: string,
    entries: [string],

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.

  • Path and Filesystem Utilities — Path manipulation

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/path

Path and Filesystem Utilities — Path manipulation

Top-level items: 91. Procedures: 79. Data surfaces: 6. Constants: 5.

First visible names: PATH_SEPARATOR, PATH_DELIMITER, Path, PathWalker, PathLibraryManifest, PathLibraryHealth, PathLibrarySummary, FileStat, S_ISREG, S_ISDIR

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.

Constants

LineNameSignatureRole
7PATH_SEPARATORconst PATH_SEPARATOR: string = "/"Defines a named constant reused across the module.
8PATH_DELIMITERconst PATH_DELIMITER: string = ":"Defines a named constant reused across the module.
45S_ISREGconst S_ISREG: i32 = 1Defines a named constant reused across the module.
46S_ISDIRconst S_ISDIR: i32 = 2Defines a named constant reused across the module.
47S_ISLNKconst S_ISLNK: i32 = 4Defines a named constant reused across the module.

Data surfaces

LineNameSignatureRole
10Pathform Path {Introduces a structured data shape that other procedures can exchange.
15PathWalkerform PathWalker {Introduces a structured data shape that other procedures can exchange.
21PathLibraryManifestform PathLibraryManifest {Introduces a structured data shape that other procedures can exchange.
27PathLibraryHealthform PathLibraryHealth {Introduces a structured data shape that other procedures can exchange.
36PathLibrarySummaryform PathLibrarySummary {Introduces a structured data shape that other procedures can exchange.
41FileStatform FileStat {Introduces a structured data shape that other procedures can exchange.

Procedures

LineNameSignatureRole
49listdirproc listdir(root: string) -> [string] {Represents one top-level surface in the file contract and should be read as part of the module boundary.
53getenvproc getenv(name: string) -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
57getcwdproc getcwd() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
61setenvproc setenv(name: string, value: string, overwrite: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
65accessproc access(p: string, mode: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
69statproc stat(p: string) -> FileStat {Represents one top-level surface in the file contract and should be read as part of the module boundary.
75lstatproc lstat(p: string) -> FileStat {Represents one top-level surface in the file contract and should be read as part of the module boundary.
82_path_sliceproc _path_slice(str: string, start: int, end: int) -> string {Owns path semantics, traversal, or normalization.
93_path_strip_trailing_separatorproc _path_strip_trailing_separator(p: string) -> string {Owns path semantics, traversal, or normalization.
107_path_splitproc _path_split(p: string) -> [string] {Owns path semantics, traversal, or normalization.
133_path_join_partsproc _path_join_parts(parts: [string], absolute: int) -> string {Owns path semantics, traversal, or normalization.
158_path_remove_last_componentproc _path_remove_last_component(parts: [string]) -> [string] {Owns path semantics, traversal, or normalization.
171_path_segment_matchesproc _path_segment_matches(text: string, pattern: string) -> int {Owns path semantics, traversal, or normalization.
215_path_match_partsproc _path_match_parts(parts: [string], pattern_parts: [string], pi: int, qi: int) -> int {Owns path semantics, traversal, or normalization.
245_path_collect_recursiveproc _path_collect_recursive(root: string, entries: [string]) -> [string] {Owns path semantics, traversal, or normalization.
274_join_stringsproc _join_strings(values: [string], delimiter: string) -> string {Owns path semantics, traversal, or normalization.
287_get_env_variableproc _get_env_variable(name: string) -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
295path_versionproc path_version() -> string {Owns path semantics, traversal, or normalization.
299path_nameproc path_name() -> string {Owns path semantics, traversal, or normalization.
303path_module_countproc path_module_count() -> i32 {Owns path semantics, traversal, or normalization.
307path_modulesproc path_modules() -> [string] {Owns path semantics, traversal, or normalization.
316path_manifestproc path_manifest() -> PathLibraryManifest {Owns path semantics, traversal, or normalization.
324path_readyproc path_ready() -> bool {Owns path semantics, traversal, or normalization.
328path_healthproc path_health() -> PathLibraryHealth {Owns path semantics, traversal, or normalization.
339path_summaryproc path_summary() -> PathLibrarySummary {Owns path semantics, traversal, or normalization.
346path_selftestproc path_selftest() -> bool {Owns path semantics, traversal, or normalization.
356path_newproc path_new(p: string) -> Path {Owns path semantics, traversal, or normalization.
363path_normalizeproc path_normalize(p: string) -> string {Owns path semantics, traversal, or normalization.
404path_resolveproc path_resolve(p: string) -> string {Owns path semantics, traversal, or normalization.
415path_absoluteproc path_absolute(p: string) -> string {Owns path semantics, traversal, or normalization.
419path_relativeproc path_relative(base: string, target: string) -> string {Owns path semantics, traversal, or normalization.
461path_get_parentproc path_get_parent(p: string) -> string {Owns path semantics, traversal, or normalization.
497path_get_filenameproc path_get_filename(p: string) -> string {Owns path semantics, traversal, or normalization.
514path_get_basenameproc path_get_basename(p: string) -> string {Owns path semantics, traversal, or normalization.
518path_get_stemproc path_get_stem(p: string) -> string {Owns path semantics, traversal, or normalization.
532path_get_extensionproc path_get_extension(p: string) -> string {Owns path semantics, traversal, or normalization.
547path_get_directoryproc path_get_directory(p: string) -> string {Owns path semantics, traversal, or normalization.
551path_get_rootproc path_get_root(p: string) -> string {Owns path semantics, traversal, or normalization.
559path_joinproc path_join(base: string, component: string) -> string {Owns path semantics, traversal, or normalization.
586path_join_multiproc path_join_multi(base: string, components: [string]) -> string {Owns path semantics, traversal, or normalization.
596path_with_extensionproc path_with_extension(p: string, ext: string) -> string {Owns path semantics, traversal, or normalization.
617path_with_filenameproc path_with_filename(p: string, filename: string) -> string {Owns path semantics, traversal, or normalization.
626path_existsproc path_exists(p: string) -> int {Owns path semantics, traversal, or normalization.
630path_is_fileproc path_is_file(p: string) -> int {Owns path semantics, traversal, or normalization.
636path_is_dirproc path_is_dir(p: string) -> int {Owns path semantics, traversal, or normalization.
642path_is_symlinkproc path_is_symlink(p: string) -> int {Owns path semantics, traversal, or normalization.
648path_is_absoluteproc path_is_absolute(p: string) -> int {Owns path semantics, traversal, or normalization.
657path_is_relativeproc path_is_relative(p: string) -> int {Owns path semantics, traversal, or normalization.
664path_is_hiddenproc path_is_hidden(p: string) -> int {Owns path semantics, traversal, or normalization.
673path_equalsproc path_equals(p1: string, p2: string) -> int {Owns path semantics, traversal, or normalization.
677path_starts_withproc path_starts_with(p: string, prefix: string) -> int {Owns path semantics, traversal, or normalization.
693path_ends_withproc path_ends_with(p: string, suffix: string) -> int {Owns path semantics, traversal, or normalization.
712path_matchesproc path_matches(p: string, pattern: string) -> int {Owns path semantics, traversal, or normalization.
720path_globproc path_glob(pattern: string) -> [string] {Owns path semantics, traversal, or normalization.
735path_glob_recursiveproc path_glob_recursive(pattern: string) -> [string] {Owns path semantics, traversal, or normalization.
740path_walkproc path_walk(root: string) -> PathWalker {Owns path semantics, traversal, or normalization.
765path_walk_recursiveproc path_walk_recursive(root: string) -> PathWalker {Owns path semantics, traversal, or normalization.
773path_walker_nextproc path_walker_next(w: PathWalker) -> string {Owns path semantics, traversal, or normalization.
782path_walker_has_nextproc path_walker_has_next(w: PathWalker) -> int {Owns path semantics, traversal, or normalization.
787path_cleanproc path_clean(p: string) -> string {Owns path semantics, traversal, or normalization.
791path_canonicalizeproc path_canonicalize(p: string) -> string {Owns path semantics, traversal, or normalization.
795path_simplifyproc path_simplify(p: string) -> string {Owns path semantics, traversal, or normalization.
799path_expand_homeproc path_expand_home(p: string) -> string {Owns path semantics, traversal, or normalization.
815path_expand_envproc path_expand_env(p: string) -> string {Owns path semantics, traversal, or normalization.
868home_dirproc home_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
890temp_dirproc temp_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
909current_dirproc current_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
917config_dirproc config_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
925cache_dirproc cache_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
933desktop_dirproc desktop_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
941documents_dirproc documents_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
949downloads_dirproc downloads_dir() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
958get_path_envproc get_path_env() -> [string] {Owns path semantics, traversal, or normalization.
988find_in_pathproc find_in_path(executable: string) -> string {Owns path semantics, traversal, or normalization.
1014add_to_pathproc add_to_path(directory: string) -> int {Owns path semantics, traversal, or normalization.
1032remove_from_pathproc remove_from_path(directory: string) -> int {Owns path semantics, traversal, or normalization.
1051path_segmentsproc path_segments(p: string) -> [string] {Owns path semantics, traversal, or normalization.
1055path_depthproc path_depth(p: string) -> i32 {Owns path semantics, traversal, or normalization.
1059path_reportproc path_report(p: string) -> Path {Owns path semantics, traversal, or normalization.

Exports

LineNameSignatureRole
1066*export *Re-exports surfaces that the module wants to expose as part of its public boundary.

Integration boundaries

Within path, 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: Path manipulation, special locations, walkers, and globbing.
  • Family architecture role: Use `path` when the program needs path semantics, traversal, or normalization. Keep it distinct from file contents and from business validation.

Composition guidance

Choose this module when

  • Choose path.vitl when the main question is owned by this module rather than by transport, storage, orchestration, or user-interface code.
  • Use this module when bytes or paths cross a host boundary and architecture must keep that boundary visible.
  • A project root can be normalized before any file is read.
  • A walker can enumerate source files while parsing and diagnostics remain elsewhere.

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 path.
  • Check nearby modules such as path/globbing.vitl, path/manipulation.vitl, path/special.vitl before 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.

NeighborProceduresData surfacesWhy compare it
path/globbing.vitl113Shares the same family boundary but carries a distinct slice of responsibility.
path/manipulation.vitl404Shares the same family boundary but carries a distinct slice of responsibility.
path/special.vitl193Shares the same family boundary but carries a distinct slice of responsibility.
path/walker.vitl114Shares the same family boundary but carries a distinct slice of responsibility.

Neighbor modules