Function initEmpty [src]
Creates a bit set with no elements present.
Prototype
pub fn initEmpty(allocator: Allocator, bit_length: usize) !Self
Parameters
allocator: Allocator
bit_length: usize
Source
pub fn initEmpty(allocator: Allocator, bit_length: usize) !Self {
return Self{
.unmanaged = try DynamicBitSetUnmanaged.initEmpty(allocator, bit_length),
.allocator = allocator,
};
}