min_element (STL/CLR)
Finds the first occurrence of smallest element in a specified range where the ordering criterion may be specified by a binary predicate.
template<class _FwdIt> inline
_FwdIt min_element(_FwdIt _First, _FwdIt _Last);
template<class _FwdIt, class _Pr> inline
_FwdIt min_element(_FwdIt _First, _FwdIt _Last, _Pr _Pred);
Remarks
This function behaves the same as the STL function min_element. For more information, see min_element.
Requirements
Header: <cliext/algorithm>
Namespace: cliext