digitalmars.D.learn - Template Arguments
- "Carlos Smith" <carlos-smith sympatico.ca> Feb 18 2007
- Kirk McDonald <kirklin.mcdonald gmail.com> Feb 18 2007
- "Carlos Smith" <carlos-smith sympatico.ca> Feb 19 2007
In the the definition of template arguments: TemplateArgument: Type AssignExpression Symbol What does Symbol stands for ? Carlos
Feb 18 2007
Carlos Smith wrote:In the the definition of template arguments: TemplateArgument: Type AssignExpression Symbol What does Symbol stands for ? Carlos
Any symbol which can be resolved at compile-time, such as, for example, a function, can be passed as a template argument. The grammar doesn't define what "Symbol" is, specifically, but it might not be incorrect to think of it as the same as "Identifier". -- Kirk McDonald http://kirkmcdonald.blogspot.com Pyd: Connecting D and Python http://pyd.dsource.org
Feb 18 2007
"Kirk McDonald" <kirklin.mcdonald gmail.com> wrote in message : : Any symbol which can be resolved at compile-time, such as, for example, : a function, can be passed as a template argument. The grammar doesn't : define what "Symbol" is, specifically, but it might not be incorrect to : think of it as the same as "Identifier". Thanks. Well, it should be define somewhere. This is part of the language definition spec !
Feb 19 2007








"Carlos Smith" <carlos-smith sympatico.ca>