CFBitVectorSetCount(_:_:)
Changes the size of a mutable bit vector.
Declaration
func CFBitVectorSetCount(_ bv: CFMutableBitVector!, _ count: CFIndex)Parameters
- bv:
The bit vector to modify.
- count:
The new size for
bv. Ifcountis greater than the current size ofbv, the additional bit values are set to0.
Discussion
If bv was created with a fixed capacity, you cannot increase its size beyond that capacity.