Call template-function with types in a tuple (not values)
I would like to call a template function with no arguments for each type in a tuple. The code below shows exactly what the intention is. My solution involves making a dummy instance of DataGroup(). I’d like to avoid this, as the types may not have a default constructor. I’ve attempted to use std::declval<DataGroup>() instead,… Read More Call template-function with types in a tuple (not values)