CFArrayReleaseCallBack
Prototype of a callback function used to release a value before it’s removed from an array.
Declaration
typealias CFArrayReleaseCallBack = (CFAllocator?, UnsafeRawPointer?) -> VoidParameters
- allocator:
The array’s allocator.
- value:
The value being removed from an array.
Discussion
This callback is passed to CFArrayCreate(_:_:_:_:) in a CFArrayCallBacks structure.