我正在使用“Visual Studio 2019 16.8 Preview 3”
module;
//#include <boost/algorithm/string.hpp> // (1) global module fragment
export module M;
import boost; // (2) as C++20 module
我现在可以将 boost(或其中的一部分)作为 C++20 模块导入吗?我正在使用由 vcpkg 安装的 boost 1.73.0。
顺便说一句,我不确定为什么使用此页面boost
作为示例, https://vector-of-bool.github.io/2019/03/10/modules-1.html