@brief Find the object in the Vector. * @param object The object to find. * @return Returns an iterator which refers to the element that its value is equals to object. * Returns Vector::end() if not found. */
| 230 | * Returns Vector::end() if not found. |
| 231 | */ |
| 232 | const_iterator find(T object) const { return std::find(_data.begin(), _data.end(), object); } |
| 233 | |
| 234 | /** @brief Find the object in the Vector. |
| 235 | * @param object The object to find. |