Function initEmpty [src]
Creates a bit set with no elements present.
If bit_length is not zero, deinit must eventually be called.
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 {
var self = Self{};
try self.resize(allocator, bit_length, false);
return self;
}