Brian Silverman | 4a2409e | 2018-08-04 23:24:02 -0700 | [diff] [blame^] | 1 | [/ |
| 2 | Copyright 2007 John Maddock. |
| 3 | Distributed under the Boost Software License, Version 1.0. |
| 4 | (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | http://www.boost.org/LICENSE_1_0.txt). |
| 6 | ] |
| 7 | |
| 8 | [section:add_const add_const] |
| 9 | |
| 10 | template <class T> |
| 11 | struct add_const |
| 12 | { |
| 13 | typedef __below type; |
| 14 | }; |
| 15 | |
| 16 | template <class T> using add_const_t = typename add_const<T>::type; // C++11 and above |
| 17 | |
| 18 | __type The same type as `T const` for all `T`. |
| 19 | |
| 20 | __std_ref 3.9.3. |
| 21 | |
| 22 | __header ` #include <boost/type_traits/add_const.hpp>` or ` #include <boost/type_traits.hpp>` |
| 23 | |
| 24 | [table Examples |
| 25 | |
| 26 | [ [Expression] [Result Type]] |
| 27 | |
| 28 | [[`add_const<int>::type`][`int const`]] |
| 29 | |
| 30 | [[`add_const<int&>::type`] [`int&`]] |
| 31 | |
| 32 | [[`add_const<int*>::type`] [`int* const`]] |
| 33 | |
| 34 | [[`add_const<int const>::type`] [`int const`]] |
| 35 | |
| 36 | ] |
| 37 | |
| 38 | [all_compilers] |
| 39 | |
| 40 | [endsect] |
| 41 | |