| 103 | ///If it is contained, returns the index. Else, returns -1. |
| 104 | |
| 105 | int indexOf(const Data& data) |
| 106 | { |
| 107 | return indexOf(data, 0, m_itemCount); |
| 108 | } |
| 109 | |
| 110 | ///Searches the given item within the specified bounds. |
| 111 | int indexOf(const Data& data, uint start, uint end) |