Created
September 1, 2016 06:20
-
-
Save Flast/729d4b2e8ff380bf0255def4b969149a to your computer and use it in GitHub Desktop.
I want this method!!!!!!!!!!!!!!!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename T, typename... A> | |
template <typename R, typename... V, typename = std::void_t< | |
std::enable_if_t<std::is_convertible_v<R, T>> | |
, std::enable_if_t<std::is_convertible_v<V, A>>... | |
>> | |
explicit std::packaged_task<T(A...)>::packaged_task(std::packaged_task<R(V...)>&& other); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment