Skip to documentation
SLOP

tiny.sandbox.Change

Reference tiny.sandbox Change

Defined in change.

API (4)

Actions

Public operations.

Fields and members

Public fields and members.

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

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;
Called byCallsNo direct callersEntrycloneChangeclone
Static calls · unresolved targets: 0 · external targets: 0.
Called byCallsNo direct callersEntrydeinitChangedeinit
Static calls · unresolved targets: 0 · external targets: 0.

Audit

Definitions3
Public names6
Members2
Version26.7.0
Revisiondaab053ee433