tiny.sql.IndexScan
Defined in index.
API (3)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/sql/src/index.zig:315
zig
pub const Scan = struct { entries: tree.Scan, pub fn deinit(self: *Scan) void { self.entries.deinit(); self.* = undefined; } pub fn next(self: *Scan) Error!?Entry { if (try self.entries.next()) |entry| { return .{ .rowid = try key.decodeIndexRowId(entry.key), .key = entry.key, .payload = entry.bytes, }; } return null; }};Source: lib/sql/src/root.zig:235
zig
pub const IndexScan = index.Scan;Audit
| Definitions | 3 |
|---|---|
| Public names | 6 |
| Members | 1 |
| Version | 26.7.0 |
| Revision | daab053ee433 |