A C++17 library providing asynchronous execution and persistent threading.
$ make installInclude the header.
#include <concur> // if you've installed the library
#include "./include/concur.hpp" // if you haven'tInitiate an async instance.
con::Async async;Run async functions, wait for their result whenever.
async([](int x){ return x * 2; }, 44);
async([](int x){ return x * 2; }, 44).get();