/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

usingstdcpp.org
| | www.foonathan.net
4.6 parsecs away

Travel
| | In my previous blog post, weve discussed the static constexpr std::integral_constant idiom to specify the size of a range at compile-time. Unlike the standard, our (think-cells) ranges library at think-cell already supports compile-time sizes natively, so I was eager to try the idiom there and see how it works out in practice. namespace tc { template constexpr auto size(Rng&& rng); // runtime-size of a range, like std::ranges::size template requires tc::has_constexpr_size constexpr auto constexpr_size = ...
| | www.think-cell.com
5.8 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.
| | herbsutter.com
2.3 parsecs away

Travel
| | [Edited to add C++20 schedule at end] On Saturday March 17, the ISO C++ committee completed its winter meeting in Jacksonville, Florida, USA, hosted with thanks by the Standard C++ Foundation and Perennial. We had some 140 people at the meeting, representing 8 national bodies. As usual, we met for six days Monday through Saturday,...
| | huonw.github.io
23.0 parsecs away

Travel
| Closures in Rust are powerful and flexible, building on traits, generics and ownership.