wordCountOfBitCount

@safe static pure nothrow @safe
@nogc => ((bitCount / wordBits) + (bitCount % wordBits != 0 ? 1 : 0))
size_t
wordCountOfBitCount
(
size_t bitCount
)

Return Value

Type: size_t

number of words (size_t) needed to represent bitCount bits.

Meta