Function hasLibName [src]
Prototype
pub fn hasLibName(id: Id) bool Parameters
id: Id Source
pub fn hasLibName(id: Id) bool {
return switch (id) {
.extern_const,
.pub_extern_const,
.extern_var,
.extern_var_threadlocal,
.pub_extern_var,
.pub_extern_var_threadlocal,
=> true,
else => false,
};
}