Contents

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 NULL or 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 0 to 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

Creating a CFMutableBitVector Object