Skip to documentation
SLOP

tiny.closure.canonical

Reference tiny.closure canonical

Defined in tiny.closure.

API (1)

Actions

Public operations.

No direct callersNo direct callstiny.closurecanonical
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/closure/src/canonical/generation.zig:66

zig
pub fn generation(manifest: schema.GenerationInput) schema.Digest {    var hasher = Hasher.init();    hasher.putU64(manifest.id);    nodes(&hasher, manifest.nodes);    edges(&hasher, manifest.edges);    artifacts(&hasher, manifest.artifacts);    ranges(&hasher, manifest.ranges);    digests(&hasher, manifest.digests);    provenance(&hasher, manifest.provenance_parents);    sources(&hasher, manifest.source_records);    builds(&hasher, manifest.build_records);    authorities(&hasher, manifest.authorities);    lineages(&hasher, manifest.lineage_references);    services(&hasher, manifest.service_descriptors);    roots(&hasher, manifest.residual_roots);    claims(&hasher, manifest.claims);    claimNodes(&hasher, manifest.claim_nodes);    return hasher.finish();}
Called byCallstest sourcelib.closure.src.canonical.generationtest: generation root is fieldwise de...private sourcelib.closure.src.canonical.generation.Hasherfinishprivate sourcelib.closure.src.canonical.generation.Hasherinitprivate sourcelib.closure.src.canonical.generation.HasherputU64private sourcelib.closure.src.canonical.generationartifactsprivate sourcelib.closure.src.canonical.generationauthorities+12 morecanonicalgeneration
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/closure/src/canonical/root.zig

zig
const canonical = @import("generation.zig");pub const generation = canonical.generation;

Source: lib/closure/src/root.zig:12

zig
pub const canonical = @import("canonical/root.zig");

Complete call list for canonical.generation

17 direct calls.

Audit

Definitions2
Public names2
Members0
Version26.7.0
Revisiondaab053ee433