我可以使用boost作为c++;现在是20模块吗?

我可以使用boost作为c++;现在是20模块吗?,boost,c++20,visual-c++-2019,Boost,C++20,Visual C++ 2019,我正在使用“Visual Studio 2019 16.8预览3” 模块; //#包含//(1)全局模块片段 出口模块M; 进口增加;//(2) as C++20模块 我现在可以将boost(或其一部分)作为C++20模块导入吗?我使用的是vcpkg安装的boost 1.73.0 顺便说一句,我不知道为什么这个页面使用boost作为例子 module; //#include <boost/algorithm/string.hpp> // (1) global module f

我正在使用“Visual Studio 2019 16.8预览3”

模块;
//#包含//(1)全局模块片段
出口模块M;
进口增加;//(2) as C++20模块
我现在可以将boost(或其一部分)作为C++20模块导入吗?我使用的是vcpkg安装的boost 1.73.0

顺便说一句,我不知道为什么这个页面使用
boost
作为例子

module;

//#include <boost/algorithm/string.hpp>   // (1) global module fragment
export module M;

import boost;  // (2) as C++20 module