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 template identity_based_inplace_combine

boost::icl::identity_based_inplace_combine

Synopsis

// In header: <boost/icl/functors.hpp>

template<typename Type> 
struct identity_based_inplace_combine {
  // types
  typedef Type &       first_argument_type; 
  typedef const Type & second_argument_type;
  typedef void         result_type;         

  // public static functions
  static Type identity_element();
};

Description

identity_based_inplace_combine public static functions

  1. static Type identity_element();

PrevUpHomeNext