tiny.sql.IndexRoot
Defined in version.
API (6)
Actions
Public operations.
Fields and members
Public fields and members.
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
| Definitions | 3 |
|---|---|
| Public names | 6 |
| Members | 4 |
| Version | 26.7.0 |
| Revision | daab053ee433 |