blob: 0b72a09166778d4791b75520900e308206cc8698 [file] [log] [blame]
[/
Copyright 2007 John Maddock.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt).
]
[section:remove_all_extents remove_all_extents]
template <class T>
struct remove_all_extents
{
typedef __below type;
};
template <class T> using remove_all_extents_t = typename remove_all_extents<T>::type; // C++11 and above
__type If `T` is an array type, then removes all of the array bounds on `T`, otherwise
leaves `T` unchanged.
__std_ref 8.3.4.
[all_compilers]
__header ` #include <boost/type_traits/remove_all_extents.hpp>` or ` #include <boost/type_traits.hpp>`
[table Examples
[ [Expression] [Result Type]]
[[`remove_all_extents<int>::type`][`int`]]
[[`remove_all_extents<int const[2]>::type`] [`int const`]]
[[`remove_all_extents<int[][2]>::type`] [`int`]]
[[`remove_all_extents<int[2][3][4]>::type`] [`int`]]
[[`remove_all_extents<int const*>::type`] [`int const*`]]
]
[endsect]