2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_IS_HEAP_HPP
|
|
|
|
#define SPROUT_ALGORITHM_IS_HEAP_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/algorithm/is_heap_until.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
|
|
|
|
// 25.4.6.5 is_heap
|
|
|
|
template<typename RandomAccessIterator>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool is_heap(RandomAccessIterator first, RandomAccessIterator last) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return sprout::is_heap_until(first, last) == last;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename RandomAccessIterator, typename Compare>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool is_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return sprout::is_heap_until(first, last, comp) == last;
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_IS_HEAP_HPP
|