tiny.sandbox.Change
Defined in change.
API (4)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/sandbox/src/change.zig:47
zig
pub const Change = struct { operation: Operation, entry: Entry, pub fn clone(self: Change, allocator: Allocator) Allocator.Error!Change { return .{ .operation = self.operation, .entry = try self.entry.clone(allocator), }; } pub fn deinit(self: *Change, allocator: Allocator) void { self.entry.deinit(allocator); self.* = undefined; }};Source: lib/sandbox/src/root.zig:48
zig
pub const Change = change.Change;Audit
| Definitions | 3 |
|---|---|
| Public names | 6 |
| Members | 2 |
| Version | 26.7.0 |
| Revision | daab053ee433 |