|
|
typedef const struct __CFBag * | CFBagRef |
| |
|
typedef void(* | CFBagApplierFunction) (const void *value, void *context) |
| |
|
typedef CFStringRef(* | CFBagCopyDescriptionCallBack) (const void *value) |
| |
|
typedef Boolean(* | CFBagEqualCallBack) (const void *value1, const void *value2) |
| |
|
typedef CFHashCode(* | CFBagHashCallBack) (const void *value) |
| |
|
typedef void(* | CFBagReleaseCallBack) (CFAllocatorRef alloc, const void *value) |
| |
|
typedef const void *(* | CFBagRetainCallBack) (CFAllocatorRef alloc, const void *value) |
| |
|
|
Boolean | CFBagContainsValue (CFBagRef bag, const void *value) |
| |
|
CFIndex | CFBagGetCount (CFBagRef bag) |
| |
|
CFIndex | CFBagGetCountOfValue (CFBagRef bag, const void *value) |
| |
|
void | CFBagGetValues (CFBagRef bag, const void **values) |
| |
|
const void * | CFBagGetValue (CFBagRef bag, const void *value) |
| |
|
Boolean | CFBagGetValueIfPresent (CFBagRef bag, const void *candidate, const void **value) |
| |