template<typename type, class allocator>
Returns the index of val starting the search from i, returning -1 if not found.
Definition at line 170 of file qmemarray.h. 00171 { 00172 for(; i<size(); i++) 00173 { 00174 if(at(i)==val) return i; 00175 } 00176 return -1; 00177 }
|