1#ifndef DYSCO_THREADGROUP_H 
    2#define DYSCO_THREADGROUP_H 
void join_all()
Join all threads in the group that have not yet been joined.
 
bool empty() const
Get state of thread group.
 
~threadgroup()
Destructor.
 
void create_thread(T threadFunc)
Create a new thread that will execute the given functor.
 
threadgroup()
Constructor.
 
std::vector< std::thread > _threads