tiny.tldr.Object
Defined in object.
API (4)
Actions
Public operations.
Fields and members
Public fields and members.
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
| Definitions | 2 |
|---|---|
| Public names | 4 |
| Members | 3 |
| Version | 26.7.0 |
| Revision | daab053ee433 |