Function init [src]

Create a BufSet using an allocator. The allocator will be used internally for both backing allocations and string duplication.

Prototype

pub fn init(a: Allocator) BufSet

Parameters

a: Allocator

Source

pub fn init(a: Allocator) BufSet { return .{ .hash_map = BufSetHashMap.init(a) }; }