Function get [src]
Prototype
pub fn get(self: Strtab, off: u32) []const u8 Parameters
self: Strtaboff: u32 Source
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);
}