bitvec
bitvec copied to clipboard
Optimise creating zeroed vectors
Currently, creating a zeroed BitVec is not as fast as it perhaps could be, because it ends up calling __rust_alloc and then zeroing the memory. It would be nice to take advantage of __rust_alloc_zeroed, if it is possible to do so.
See this Rust issue for context.