find

The function find searches for the first element that contains the value passed.

  template<class InputIterator, class T>
  InputIterator find
  (InputIterator first, InputIterator last, const T& value);
  
Remarks

Returns the type passed.