Function namedLazyPath [src]
Prototype
pub fn namedLazyPath(d: *Dependency, name: []const u8) LazyPath Parameters
d: *Dependencyname: []const u8 Source
pub fn namedLazyPath(d: *Dependency, name: []const u8) LazyPath {
return d.builder.named_lazy_paths.get(name) orelse {
panic("unable to find named lazypath '{s}'", .{name});
};
}