| 168 | |
| 169 | void remove(int pos); |
| 170 | inline object::Object *get(int pos) const |
| 171 | { return (pos >= 0 && pos < numElements) ? array[pos] : NULL; } |
| 172 | void clear(); |
| 173 | void sort(object::Comparator *comparator = &object::standardComparator); |
| 174 | int bsearch(Object *key, bool mustExist, int start, int end, |