makeReallocatedBitArrayZeroPadded

@safe @system
size_t*
makeReallocatedBitArrayZeroPadded
(
alias Allocator
)
(
size_t* input
,
const size_t currentBitCount
,
const size_t newBitCount
)
if (
__traits(hasMember, Allocator, "reallocate")
)

Return Value

Type: size_t*

input reallocated to contain newBitCount number of bits. New bits are default-initialized to zero.

Meta