DoxigAlpha

get

Function parameters

Parameters

#
off:u32

Type definitions in this namespace

Types

#
ImportHintNameEntry
Every name ends with a NULL byte.

Error sets in this namespace

Error Sets

#

= 0x10b

Values

#

Source

Implementation

#
pub fn get(self: Strtab, off: u32) []const u8 {
    assert(off < self.buffer.len);
    return mem.sliceTo(@as([*:0]const u8, @ptrCast(self.buffer.ptr + off)), 0);
}