C++ identifier with special meaning: import
(since C++20)
From cppreference.com
< cpp
[edit] Usage
-
module
import declaration: imports a set of translation units
[edit] Example
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 formed from header <set>