Function initFull [src]

Creates a bit set with all elements present. If bit_length is not zero, deinit must eventually be called.

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 { var self = Self{}; try self.resize(allocator, bit_length, true); return self; }