C++ Logo

std-proposals

Advanced search

Re: Make class template parameters available externally

From: Bjorn Reese <breese_at_[hidden]>
Date: Wed, 30 Oct 2019 23:48:35 +0100
On 10/30/19 10:49 PM, Ville Voutilainen via Std-Proposals wrote:

> If I then _don't_ want to expose such a template parameter name, what do I do?

The proposal could make it opt-in instead of opt-out. That would not
expose existing template parameters without the consent of the
template author. For example:

template <explicit class value_type,
           explicit class allocator_type>
struct vector {
};

Received on 2019-10-30 17:50:54