
C++ identifier with special meaning: import (since C++20 ...
export module foo; import bar; // imports all module interface units of module bar import :baz; // imports the so-named module partition baz of module foo import <set>; // imports a synthesized header unit …
Modules (since C++20) - cppreference.com
Import declarations can be exported in a module interface unit. That is, if module B export-imports A, then importing B will also make visible all exports from A.
cppreference.com
What links here Related changes Upload file Special pages Printable version Permanent link Page information
C++ Standard Library - cppreference.com
Library contents The C++ standard library provides definitions for the entities and macros described in the synopses of the C++ standard library headers, unless otherwise specified. All library entities …
Identifiers - cppreference.com
The identifiers with special meaning (final, import, module (since C++20) and override) are used explicitly in a certain context rather than being regular identifiers.
Source file inclusion - cppreference.com
2) Searches for a source file identified by q-char-sequence and replaces the directive by the entire contents of the source file. It may fallback to (1) and treat q-char-sequence as a header identifier.
C++26 - cppreference.com
The next generation of the C++ standard. The current IS schedule for C++26: P1000R6 (2024-05-14).
Algorithms library - cppreference.com
Parallel algorithms (since C++17) A parallel algorithm is a function template in the algorithms library with a template parameter named ExecutionPolicy or constrained by execution-policy (since C++26). …
C++ keywords - cppreference.com
Also, all identifiers that contain a double underscore __ in any position and each identifier that begins with an underscore followed by an uppercase letter is always reserved, and all identifiers that begin …
Input/output library - cppreference.com
Stream-based I/O The stream-based input/output library is organized around abstract input/output devices. These abstract devices allow the same code to handle input/output to files, memory …