Tags C++23 C++23: if consteval admin September 24, 2023 “If consteval” is useful in the context of calling a consteval function from within a constexpr function. A consteval function
Tags C++23 C++23: “stacktrace” Library admin June 6, 2023 The ability to enumerate stack frames at runtime is one of the interesting features introduced in C++23. This is made
Tags C++23 std::expected<> admin May 13, 2023 I had written about std::optional<> in an earlier article. C++23 introduces std::expected<> as an interesting extension to std::optional<>. Whereas std::optional<>