Difference between revisions of "DIP61"
WalterBright (talk | contribs) (Switch to new extern(C++,N) syntax) |
WalterBright (talk | contribs) |
||
Line 1: | Line 1: | ||
{| class="wikitable" | {| class="wikitable" | ||
!Title: | !Title: | ||
− | !'''Add namespace scopes to support | + | !'''Add namespace scopes to support referencing external C++ symbols in C++ namespaces''' |
|- | |- | ||
|DIP: | |DIP: | ||
Line 36: | Line 36: | ||
== Description == | == Description == | ||
A namespace scope creates a scope with a name, and inside that scope all declarations become part of the | A namespace scope creates a scope with a name, and inside that scope all declarations become part of the | ||
− | namespace scope. This involves the addition of | + | namespace scope. This involves the addition of a small amount of new grammar. |
Compiler changes are expected to be minor. The change is additive and should not impact any existing code. | Compiler changes are expected to be minor. The change is additive and should not impact any existing code. | ||
Revision as of 19:56, 27 April 2014
Title: | Add namespace scopes to support referencing external C++ symbols in C++ namespaces |
---|---|
DIP: | 61 |
Version: | 1 |
Status: | Draft |
Created: | 2014-04-26 |
Last Modified: | 2014-04-26 |
Author: | Walter Bright |
Links: | DIP61/Archive — NG discussion that triggered the DIP |
Contents
Abstract
Add ability to reference from D C++ symbols that are in C++ namespaces.
Rationale
Best practices in C++ code increasingly means putting functions and declarations in namespaces. Currently, there is no support in D to call C++ functions in namespaces. The primary issue is that the name mangling doesn't match. Need a simple and straightforward method of indicating namespaces.
Description
A namespace scope creates a scope with a name, and inside that scope all declarations become part of the namespace scope. This involves the addition of a small amount of new grammar. Compiler changes are expected to be minor. The change is additive and should not impact any existing code.
The namespace is identified by an identifier following the C++ in extern(C++). Nested namespaces can be specified using . to separate them.
Usage
extern (C++, MyNamespace) { int foo(); }
creates a namespace named "MyNamespace". As is currently the case,
extern (C++) { int foo(); }
does not create a namespace.
The following declarations are all equivalent:
extern (C++) { extern (C++, N) { extern (C++, M) { int foo(); }}}
extern (C++, N.M) { int foo(); }
extern (C++, N) { extern (C++) { extern (C++, M) { int foo(); }}}
Namespaces can be nested. Declarations in the namespace can be accessed without qualification in the enclosing scope if there is no ambiguity. Ambiguity issues can be resolved by adding the namespace qualifier:
extern (C++, N) { int foo(); int bar(); }
extern (C++, M) { long foo(); }
bar(); // ok
foo(); // error, ambiguous
N.foo(); // ok
N.bar(); // ok
Name lookup rules are the same as for mixin templates.
Unlike C++, namespaces in D will be 'closed' meaning that new declarations cannot be inserted into a namespace after the closing }. C++ Argument Dependent Lookup (aka "Koenig Lookup") will not be supported.
Copyright
This document has been placed in the Public Domain.