Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template push_void

boost::heap::skew_heap::push_void

Synopsis

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


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

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

Description

push_void public static functions

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

PrevUpHomeNext