Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template inplace_identity

boost::icl::inplace_identity

Synopsis

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

template<typename Type> 
struct inplace_identity :
  public boost::icl::identity_based_inplace_combine< Type >
{
  // types
  typedef inplace_identity< Type > type;

  // public member functions
  void operator()(Type &, const Type &) const;
};

Description

inplace_identity public member functions

  1. void operator()(Type & object, const Type & operand) const;

PrevUpHomeNext