@@ -190,7 +190,7 @@ extern CFArrayRef CFArrayCreateCopy(CFAllocatorRef allocator, CFArrayRef theArra
190190 capacity = A hint about the number of values that will be held
191191 by the CFArray. Pass 0 for no hint. The implementation may
192192 ignore this hint, or may use it to optimize various
193- operations. An array's actual capacity is only limited by
193+ operations. ( An array's actual capacity is only limited by
194194 address space and available memory constraints). If this
195195 parameter is negative, the behavior is undefined.
196196 callBacks = A pointer to a CFArrayCallBacks structure
@@ -213,7 +213,7 @@ extern CFArrayRef CFArrayCreateCopy(CFAllocatorRef allocator, CFArrayRef theArra
213213 of version 0 with all fields NULL had been passed in.
214214 Otherwise, if any of the fields are not valid pointers to
215215 functions of the correct type, or this parameter is not a
216- valid pointer to a CFArrayCallBacks callbacks structure,
216+ valid pointer to a CFArrayCallBacks callbacks structure,
217217 the behavior is undefined. If any of the values put into the
218218 array is not one understood by one of the callback functions
219219 the behavior when that callback function is used is
@@ -236,7 +236,7 @@ extern CFMutableArrayRef CFArrayCreateMutable(CFAllocatorRef allocator, CFIndex
236236 capacity = A hint about the number of values that will be held
237237 by the CFArray. Pass 0 for no hint. The implementation may
238238 ignore this hint, or may use it to optimize various
239- operations. An array's actual capacity is only limited by
239+ operations. ( An array's actual capacity is only limited by
240240 address space and available memory constraints).
241241 This parameter must be greater than or equal
242242 to the count of the array which is to be copied, or the
@@ -465,13 +465,14 @@ extern CFIndex CFArrayGetLastIndexOfValue(CFArrayRef theArray, CFRange range, co
465465 undefined.
466466
467467 Returns:
468- The return value is either 1) the index of a value that
469- matched, if the target value matches one or more in the
470- range, 2) greater than or equal to the end point of the
471- range, if the value is greater than all the values in the
472- range, or 3) the index of the value greater than the target
473- value, if the value lies between two of (or less than all
474- of) the values in the range.
468+ The return value is either
469+ 1. the index of a value that matched, if the target value
470+ matches one or more in the range,
471+ 2. greater than or equal to the end point of the range,
472+ if the value is greater than all the values in the range, or
473+ 3. the index of the value greater than the target value,
474+ if the value lies between two of (or less than all of) the
475+ values in the range.
475476*/
476477extern CFIndex CFArrayBSearchValues(CFArrayRef theArray, CFRange range, const (void )* value, CFComparatorFunction comparator, void * context);
477478
0 commit comments