| 275 | */ |
| 276 | |
| 277 | PX_INLINE Iterator find(const T& a) |
| 278 | { |
| 279 | uint32_t index; |
| 280 | for(index = 0; index < mSize && mData[index] != a; index++) |
| 281 | ; |
| 282 | return mData + index; |
| 283 | } |
| 284 | |
| 285 | PX_INLINE ConstIterator find(const T& a) const |
| 286 | { |
no outgoing calls
no test coverage detected