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 a snapshot of the develop branch, built from commit 802bc0252a.
PrevUpHomeNext

Struct template call_traits<const T[N]>

boost::call_traits<const T[N]>

Synopsis

// In header: <boost/detail/call_traits.hpp>

template<typename T, std::size_t N> 
struct call_traits<const T[N]> {
  // types
  typedef const T *          value_type;     
  typedef array_type &       reference;      
  typedef const array_type & const_reference;
  typedef const T *const     param_type;     
};

PrevUpHomeNext