2008-04-26

Unified Function Syntax C++0x N2582

N2582 Unified Function Syntax

lambda expressionと、関数の戻り値の型を後ろに書くN2541は、よく似ているから、一緒にしてしまえというもの。lambda expressionと同じ文法が使える。

//いままで
int func(void) ;

//N2541
auto func(void) -> int ;

//N2582
[ ] func(void) -> int ;

予約語が、欲しいです。functionとかlambdaなんてありふれた予約語を、いまから作るなんて無理なことが分かっていても、やはり欲しいものは欲しい。

No comments:

Post a Comment

You can use some HTML elements, such as <b>, <i>, <a>, also, some characters need to be entity referenced such as <, > and & Your comment may need to be confirmed by blog author. Your comment will be published under GFDL 1.3 or later license with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.