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