Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > C++ Moderated > Re: String lite...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 9 of 23 Topic 9495 of 9807
Post > Topic >>

Re: String literal as template parameter?

by Alberto Ganesh Barbati <AlbertoBarbati@[EMAIL PROTECTED] > Apr 14, 2008 at 09:24 PM

mark.zaytsev@[EMAIL PROTECTED]
 ha scritto:
> On Apr 14, 12:43 pm, Sean Hunt <ride...@[EMAIL PROTECTED]
> wrote:
> 
>>> I find his extension proposal to allow a string-literal
>>> as an alternative argument of variadic non-type templates
>>> (of character type) quite interesting. This is IMO the
>>> first approach, where I would see any chance of acceptance
>>> on implementors side.
>> Yeah. This is a good idea. It doesn't take a lot of wording either:
>>
>> Sean Hunt
>>
> 
> It is also desirable to have a way to reconstruct string literal from
> variadic non-type template of character type. maybe like:
> 
> template < char ... s >
> const char* a = { s };
> 

The draft already provides a syntax for that, it is:

   template <char... s>
   class S
   {
      const char a[sizeof...(s)];
   };

   template <char... s>
   const char S<s>::a[sizeof...(s)] = { s... };

In another post of mine I proposed to leave out the final '\0' from the
char sequence. In that case we would have to add it, like this:

   template <char... s>
   class S
   {
      const char a[sizeof...(s) + 1];
   };

   template <char... s>
   const char S<s>::a[sizeof...(s) + 1] = { s..., '\0' };

not a big deal.

Ganesh

-- 
      [ See http://www.gotw.ca/resources/clcm.htm
for info about ]
      [ comp.lang.c++.moderated.    First time posters: Do this! ]
 




 23 Posts in Topic:
String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-12 12:09:19 
Re: String literal as template parameter?
Looney <hardy_melbourn  2008-04-13 12:45:53 
Re: String literal as template parameter?
Mathias Gaunard <loufo  2008-04-13 18:21:48 
Re: String literal as template parameter?
Brendan <catphive@[EMA  2008-04-13 18:21:13 
Re: String literal as template parameter?
=?ISO-8859-1?Q?Daniel_Kr=  2008-04-13 18:23:27 
Re: String literal as template parameter?
Sean Hunt <rideau3@[EM  2008-04-14 10:43:12 
Re: String literal as template parameter?
mark.zaytsev@[EMAIL PROTE  2008-04-14 13:13:15 
Re: String literal as template parameter?
Mathias Gaunard <loufo  2008-04-14 21:25:44 
Re: String literal as template parameter?
Alberto Ganesh Barbati &l  2008-04-14 21:24:25 
Re: String literal as template parameter?
Alberto Ganesh Barbati &l  2008-04-14 21:24:01 
Re: String literal as template parameter?
Alberto Ganesh Barbati &l  2008-04-14 21:24:40 
Re: String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-15 12:43:13 
Re: String literal as template parameter?
=?ISO-8859-1?Q?Daniel_Kr=  2008-04-15 23:19:28 
Re: String literal as template parameter?
David Peklak <dpeklak@  2008-04-15 23:22:35 
Re: String literal as template parameter?
Alberto Ganesh Barbati &l  2008-04-16 11:43:13 
Re: String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-17 19:35:09 
Re: String literal as template parameter?
Alberto Ganesh Barbati &l  2008-04-18 05:09:08 
Re: String literal as template parameter?
Sean Hunt <rideau3@[EM  2008-04-18 06:13:18 
Re: String literal as template parameter?
Bart van Ingen Schenau &l  2008-04-18 17:19:53 
Re: String literal as template parameter?
gpderetta <gpderetta@[  2008-04-18 17:20:48 
Re: String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-19 01:39:07 
Re: String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-19 02:01:57 
Re: String literal as template parameter?
Piotr Rak <piotr.rak@[  2008-04-19 02:02:03 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Jul 19 20:02:24 CDT 2008.