aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-09-08 15:26:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-09-08 15:26:29 +0200
commit615fa7923856ddfeda8d3e2a9bfe5a67fa95dac7 (patch)
tree76b83160c0e07a9d30b929708ba2b84a9000dec2 /doc
parente2ba7fa123213fcc5673119b8d993d7967a1fb24 (diff)
More C++ Modules documentation updates
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.cli48
1 files changed, 45 insertions, 3 deletions
diff --git a/doc/manual.cli b/doc/manual.cli
index 8fd23a7..8406956 100644
--- a/doc/manual.cli
+++ b/doc/manual.cli
@@ -980,9 +980,9 @@ This example will result in a compile error and the diagnostics may
confusingly indicate that there is no known conversion from a C string to
\"something\" called \c{std::string}. But with the understanding of the
difference between \c{import} and \c{#include} the reason should be clear:
-while the module interface \"sees\" \c{std::string} (because it imported
-its module), we do not (since we did not). So the fix is to explicitly
-import \c{std.core}:
+while the module interface \"sees\" \c{std::string} (because it imported its
+module), we do not (since we did not). So the fix is to explicitly import
+\c{std.core}:
\
import std.core;
@@ -1031,6 +1031,48 @@ export
}
\
+Besides starting a module purview, a non-exporting module declaration in the
+implemenation unit also makes non-internal linkage names declared or made
+visible in the \i{interface purview} visible in the \i{implementation
+purview}. In this sense non-exporting module declaration acts as an extended
+\c{import}. For example:
+
+\
+import hello.impl; // Not visible (exports impl()).
+
+void
+extra_impl (); // Not visible.
+
+export module hello.extra; // Start of interface purview.
+
+import hello.core; // Visible (exports core()).
+
+void
+extra (); // visible.
+
+static void
+extra2 (); // Not visible (internal linkage).
+\
+
+And this is the implementation unit:
+
+\
+module hello.extra; // Start of implementation purview.
+
+void
+f ()
+{
+ impl (); // Error.
+ extra_impl (); // Error.
+ core (); // Ok.
+ extra (); // Ok.
+}
+\
+
+In particular, this means that while the relative order of imports is not
+significant, the placement of imports in the module interface unit relative
+to the module declaration can be.
+
The final perspective that we consider is that of the build system. From its
point of view the central piece of the module infrastructure is the \i{binary
module interface}: a binary file that is produced by compiling the module