Function removeFeatureSet [src]
Removes the specified feature but not its dependents.
Prototype
pub fn removeFeatureSet(set: *Set, other_set: Set) void Parameters
set: *Setother_set: Set Source
pub fn removeFeatureSet(set: *Set, other_set: Set) void {
set.ints = @as(@Vector(usize_count, usize), set.ints) & ~@as(@Vector(usize_count, usize), other_set.ints);
}