std::launch (3) Linux Manual Page
std::launch – std::launch Synopsis Defined in header <future> enum class launch : /* unspecified */ { async = /* unspecified */, deferred = /* unspecified */, (since C++11) /* implementation-defined */ }; Specifies the launch policy for a task executed by the std::async function. std::launch is an enumeration used as BitmaskType. The following constants denoting…
