Explore >> Select a destination


You are here

quuxplusone.github.io
| | mpark.github.io
5.3 parsecs away

Travel
| | Can we work around the limitations of non-type template parameters?
| | www.think-cell.com
5.1 parsecs away

Travel
| | [AI summary] The blog post discusses techniques for implementing compile-time size calculations for range adaptors in C++ using think-cell's library, focusing on forwarding size properties and avoiding code duplication.
| | sdowney.org
5.1 parsecs away

Travel
| | A Possible Technique constexpr bool g(int lhs, int rhs) { auto& op = partial_eq; return op.ne(lhs, rhs); } Compiler Explorer with Supporting Code A trait is defined as a template var...
| | www.foonathan.net
30.7 parsecs away

Travel
| If you want a function that returns multiple values, you'd use a reference and assign the outputs to that. But using a reference has a few drawbacks - it is not obvious in the caller, requires default construction etc. This post will explain why you sometimes need output parameters and how to fix their problems.