Description
C++17 gave us fold expressions, which are really nice compared to the templates we had to use before. Unfortunately, we currently can't use them in the places it makes the most sense (namely tuple
), because they fail at only 256 types by default. It would be great if we could lift that restriction, so we can use fold expressions everywhere it makes sense.