| 362 | } |
| 363 | |
| 364 | CFArray copy (const CFList& list) |
| 365 | { |
| 366 | CFArray array= CFArray (list.length()); |
| 367 | int j= 0; |
| 368 | for (CFListIterator i= list; i.hasItem(); i++, j++) |
| 369 | array[j]= i.getItem(); |
| 370 | return array; |
| 371 | } |
| 372 | |
| 373 | void indexUpdate (int index [], const int& subsetSize, const int& setSize, |
| 374 | bool& noSubset) |
no test coverage detected