Skip to documentation
SLOP

tiny.memtrace.Scope

Reference tiny.memtrace Scope

Defined in tiny.memtrace.

API (5)

Actions

Public operations.

Fields and members

Public fields and members.

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

Source

Source: lib/memtrace/src/tracer.zig:405

zig
pub const Scope = struct {    tracer: *Tracer,    previous: u32,    scope_id: u32,    active: bool = true,    pub fn exit(self: *Scope) void {        if (!self.active) return;        self.tracer.exitScope(self.scope_id, self.previous);        self.active = false;    }};

Source: lib/memtrace/src/root.zig:60

zig
pub const Scope = tracer_mod.Scope;
Called byCallsNo direct callersprivate sourcelib.memtrace.src.tracer.TracerexitScopeScopeexit
Static calls · unresolved targets: 0 · external targets: 0.

Audit

Definitions2
Public names2
Members4
Version26.7.0
Revisiondaab053ee433