Our great sponsors
- InfluxDB - Collect and Analyze Billions of Data Points in Real Time
- Mergify - Updating dependencies is time-consuming.
- SonarCloud - Analyze your C and C++ projects with just one click.
-
It was based on this suggestion: https://github.com/codeinred/tuplet/issues/1
-
I also tried to improve the compile-times of tuples a long time ago, so I'm curious: Have you compared your implementation with https://github.com/taocpp/tuple ?
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
-
-
Tuple-like classes are common in other libraries that warrant some degree of template metaprogramming, and while std::tuple is fine for prototyping the library, the degree to which it slows down compile times and the poor performance characteristics tend to lead people to either try rolling their own implementation, or doing something funky with lambdas. I have another library that's still in progress that I'm working on that's a lot more extensive, and it uses tuplet because of it's nice characteristics. Here's some code where it gets used: https://github.com/codeinred/noam/blob/main/include/noam/util/combinator_types.hpp