| 661 | |
| 662 | template <class RandomIterator> |
| 663 | constexpr void NthElement(RandomIterator begin, RandomIterator nth, RandomIterator end) { |
| 664 | std::nth_element(begin, nth, end); |
| 665 | } |
| 666 | |
| 667 | template <class RandomIterator, class Compare> |
| 668 | constexpr void NthElement(RandomIterator begin, RandomIterator nth, RandomIterator end, Compare compare) { |
no test coverage detected