DIP61

From D Wiki
Revision as of 07:26, 26 April 2014 by WalterBright (talk | contribs) (initial edit)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Title: DIP Template
DIP: 61
Version: 1
Status: Draft
Created: 2014-04-26
Last Modified: 2014-04-26
Author: Walter Bright
Links: DIP61/ArchiveNG discussion that triggered the DIP

NG announcement and discussion

Abstract

Add support for 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.

Description

A namespace scope creates a scope with a name, and inside that scope all declarations become part of the namespace scope.

Usage

namespace MyNamespace { 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:

namespace N { int foo(); int bar(); } namespace M { long foo(); }

bar(); // ok foo(); // error, ambiguous N.foo(); // ok N.bar(); // ok

Name lookup rules are the same as for mixin templates.

NG Announcement

When posting the DIP announcement to the NG, please copy the abstract, so people can easily know what is it about and follow the link if they are interested.


Copyright

This document has been placed in the Public Domain.