Skip to documentation
SLOP

tiny.tldr.Object

Reference tiny.tldr Object

Defined in object.

API (4)

Actions

Public operations.

Fields and members

Public fields and members.

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

Source

Source: lib/tldr/src/object.zig:92

zig
pub const Object = struct {    target: Target,    sections: []ObjectSection,    symbols: []ObjectSymbol,    pub fn deinit(self: *Object, allocator: std.mem.Allocator) void {        if (self.sections.len != 0) allocator.free(self.sections);        if (self.symbols.len != 0) allocator.free(self.symbols);        self.* = undefined;    }};

Source: lib/tldr/src/root.zig:75

zig
pub const Object = object.Object;

Audit

Definitions2
Public names4
Members3
Version26.7.0
Revisiondaab053ee433