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

Provides the member typedef type which is the same as T, except that its topmost const, volatile and extent qualifiers are removed. More...

#include <remove_cvext.hpp>

Public Types

using type = remove_cv_t< remove_all_extents_t< T > >
 provides the member typedef "type"
 

Detailed Description

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

Provides the member typedef type which is the same as T, except that its topmost const, volatile and extent qualifiers are removed.

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

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