I\'m try to write a class member which calls another class member multiple times in parallel.
I wrote a simple example of the problem and can\'t even get to compile this
You can pass the this pointer to a new thread:
this
async([this]() { Function(this); });