Contents

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. If count is greater than the current size of bv, the additional bit values are set to 0.

Discussion

If bv was created with a fixed capacity, you cannot increase its size beyond that capacity.

See Also

Related Documentation

Modifying a Bit Vector