My Project
Public Types | List of all members
bsl::remove_all_extents< T > Class Template Referencefinal

Provides the member typedef type which is the same as T, except that its topmost extent is removed. More...

#include <remove_all_extents.hpp>

Public Types

using type = T
 provides the member typedef "type"
 

Detailed Description

template<typename T>
class bsl::remove_all_extents< T >

Provides the member typedef type which is the same as T, except that its topmost extent is removed.

#include <bsl/is_same.hpp>
#include <bsl/debug.hpp>
namespace bsl
{
inline void
example_remove_all_extents_overview() noexcept
{
if (bsl::is_same<bsl::remove_all_extents_t<bool[]>, bool>::value) { // NOLINT
bsl::print() << "success\n";
}
}
}
Template Parameters
Tthe type to remove the extent from

The documentation for this class was generated from the following file: