tagGet
Parameters
- tag:[]const u8
- []const u8
Source
Implementation
pub fn tagGet(tag: []const u8) !dvui.TagData {
return dvui.tagGet(tag) orelse {
std.debug.print("tag \"{s}\" not found\n", .{tag});
return error.TagNotFound;
};
}