Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template push_handle

boost::heap::skew_heap::push_handle

Synopsis

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


template<typename T, typename A0 = boost::parameter::void_, 
         typename A1 = boost::parameter::void_, 
         typename A2 = boost::parameter::void_, 
         typename A3 = boost::parameter::void_, 
         typename A4 = boost::parameter::void_, 
         typename A5 = boost::parameter::void_, 
         typename A6 = boost::parameter::void_> 
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