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 for the latest Boost documentation.
PrevUpHomeNext

Struct size_block_ctrl_compare

boost::interprocess::rbtree_best_fit::size_block_ctrl_compare

Synopsis

// In header: <boost/interprocess/mem_algo/rbtree_best_fit.hpp>



struct size_block_ctrl_compare {

  // public member functions
  bool operator()(std::size_t, const block_ctrl &) const;
  bool operator()(const block_ctrl &, std::size_t) const;
};

Description

size_block_ctrl_compare public member functions

  1. bool operator()(std::size_t size, const block_ctrl & block) const;
  2. bool operator()(const block_ctrl & block, std::size_t size) const;

PrevUpHomeNext