make_heap

The function make_heap is used to convert a range into a heap.

  template<class RandomAccessIterator>
  void make_heap
  (RandomAccessIterator first, RandomAccessIterator last);
  template<class RandomAccessIterator, class Compare>
  void make_heap(
  RandomAccessIterator first,RandomAccessIterator last,
  Compare comp);
  
Remarks

There is no value returned.