Function isBSD [src]
Prototype
pub inline fn isBSD(tag: Tag) bool Parameters
tag: Tag Source
pub inline fn isBSD(tag: Tag) bool {
return tag.isDarwin() or switch (tag) {
.freebsd, .openbsd, .netbsd, .dragonfly => true,
else => false,
};
}