CFBitVectorCreateMutable(_:_:)
Creates a mutable bit vector.
Declaration
func CFBitVectorCreateMutable(_ allocator: CFAllocator!, _ capacity: CFIndex) -> CFMutableBitVector!Parameters
- allocator:
The allocator to use to allocate memory for the new object. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - capacity:
The maximum number of values that can be contained by the new bit vector. The bit vector starts empty and can grow to this number of values (and it can have less).
Pass
0to specify that the maximum capacity is not limited. The value must not be negative.
Return Value
A new bit vector. Ownership follows the The Create Rule.
See Also
Related Documentation
- Collections Programming Topics for Core Foundation
CFBitVectorSetCount(_:_:)