KTL
binary_heap_fwd.h File Reference
#include <memory>
#include <functional>

Go to the source code of this file.

Namespaces

 ktl
 

Typedefs

template<typename T , typename Alloc = std::allocator<T>>
using ktl::binary_min_heap = binary_heap< T, std::less< T >, Alloc >
 An implementation of a binary min heap, using std::less<T> More...
 
template<typename T , typename Alloc = std::allocator<T>>
using ktl::binary_max_heap = binary_heap< T, std::greater< T >, Alloc >
 An implementation of a binary max heap, using std::greater<T> More...