bsl::remove_const<t_TYPE const>

Partial specialization of bsl::remove_const for const-qualified types.

Synopsis

Declared in <bslmf_removeconst.h>

template<class t_TYPE>
struct remove_const<t_TYPE const>;

Description

This partial specialization of bsl::remove_const, for when the (template parameter) t_TYPE is const-qualified, provides a typedef, type, that has the const-qualifier removed.

Type Aliases

NameDescription
type This typedef is an alias to the same type as the (template parameter) t_TYPE except with the const-qualifier removed.