Concurrency framework for C++11 providing lightweight task scheduling
Concurrency framework for C++11
asyncplusplus$ clang++ -std=c++11 -I$(brew --prefix asyncplusplus)/include myprogram.cpp -o myprogram$ find_package(asyncplusplus REQUIRED) and target_link_libraries(myapp async++)$ async::parallel_for(async::range(0, 100), [](int i) { /* process i */ });