Boost C++ Libraries Home Libraries People FAQ More

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