Skip to documentation
SLOP

tiny.sql.IndexRoot

Reference tiny.sql IndexRoot

Defined in version.

API (6)

Actions

Public operations.

Fields and members

Public fields and members.

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

Source

Source: lib/sql/src/version.zig:24

zig
pub const IndexRoot = struct {    fields: Hash,    map: MapRoot,    stats: Hash,    hash: Hash,    pub fn deinit(self: *IndexRoot) void {        self.map.deinit();        self.* = undefined;    }    pub fn clone(self: *const IndexRoot, allocator: Allocator) Allocator.Error!IndexRoot {        return .{            .fields = self.fields,            .map = try self.map.clone(allocator),            .stats = self.stats,            .hash = self.hash,        };    }};

Source: lib/sql/src/root.zig:281

zig
pub const IndexRoot = version.IndexRoot;

Audit

Definitions3
Public names6
Members4
Version26.7.0
Revisiondaab053ee433