Function addFeatureSet [src]

Adds the specified feature set but not its dependencies.

Prototype

pub fn addFeatureSet(set: *Set, other_set: Set) void

Parameters

set: *Setother_set: Set

Source

pub fn addFeatureSet(set: *Set, other_set: Set) void { set.ints = @as(@Vector(usize_count, usize), set.ints) | @as(@Vector(usize_count, usize), other_set.ints); }