std::pmr::new_delete_resource 线程安全吗

r0n*_*0ng 5 c++ memory std c++17

要创建一个新的 polymophic_allocator,ppl 可以使用一些默认资源

std::pmr::polymorphic_allocator<char> newdel { std::pmr::new_delete_resource() };
std::pmr::polymorphic_allocator<char> synced { std::pmr::synchronized_pool_resource() };
std::pmr::polymorphic_allocator<char> nonsync { std::pmr::unsynchronized_pool_resource() };
Run Code Online (Sandbox Code Playgroud)

我的问题是new_delete_resource线程安全的?