Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template push_handle

boost::heap::skew_heap::push_handle

Synopsis

// In header: <boost/heap/skew_heap.hpp>


template<typename T, class ... Options> 
struct push_handle {

  // public static functions
  static handle_type push(skew_heap *, const_reference);
  template<class... Args> static handle_type emplace(skew_heap *, Args &&...);
};

Description

push_handle public static functions

  1. static handle_type push(skew_heap * self, const_reference v);
  2. template<class... Args> 
      static handle_type emplace(skew_heap * self, Args &&... args);

PrevUpHomeNext