[/ 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 struct remove_all_extents { typedef __below type; }; template using remove_all_extents_t = typename remove_all_extents::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 ` or ` #include ` [table Examples [ [Expression] [Result Type]] [[`remove_all_extents::type`][`int`]] [[`remove_all_extents::type`] [`int const`]] [[`remove_all_extents::type`] [`int`]] [[`remove_all_extents::type`] [`int`]] [[`remove_all_extents::type`] [`int const*`]] ] [endsect]