fn testStaticBitSet(comptime Set: type) !void
fn testStaticBitSet(comptime Set: type) !void { var a = Set.empty; var b = Set.full; try testing.expectEqual(@as(usize, 0), a.count()); try testing.expectEqual(@as(usize, Set.bit_length), b.count()); try testEql(a, b, Set.bit_length); try testBitSet(&a, &b, Set.bit_length); try testPureBitSet(Set); }