Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
      A secure, stable, and supported operating system.
    • Red Hat Openshift
      Openshift icon
      A cloud-native application platform.
    • Red Hat Ansible Automation Platform
      Ansible icon
      Simple IT automation anyone can use.
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
      • Red Hat Enterprise Linux for SAP
      • Microsoft SQL Server on Red Hat Enterprise Linux
      • CentOS Linux
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of Quarkus
      • Red Hat build of OpenJDK
      • View all
    • Kubernetes

      • Red Hat Openshift
      • Red Hat OpenShift Service on AWS (ROSA)
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Dedicated
      • Red Hat OpenShift Data Science
    • Integration & App Connectivity

      • Red Hat Service Interconnect
      • AMQ Broker
      • View all
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Automation Platform via AWS Marketplace
      • Red Hat Ansible Lightspeed with IBM watsonx Code Assistant
      • Ansible automation for applications and services
      • View all
    • Developer tools

      • Red Hat Developer Hub
      • Red Hat Trusted Software Supply Chain
      • Red Hat OpenShift Dev Spaces
      • View all
    • Openshift Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • App Dev Platform
      App Dev Platform icon showing coding brackets
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • C, C#, C++
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
    • Developer Productivity

      • Developer Tools
      • Visual Studio Code (VS Code)
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    Initeractive Lessons and Learning Paths

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • Red Hat OpenShift AI
    • Java

    Developer Sandbox Activities

    • Get Started
    • Try Hands-On Activities

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Tutorials

    • Kubernetes
    • Application Development

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    API Catalog

    • API Catalog
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Events

    Developer Events

    • DevNation
      Join developers across the globe for live and virtual events led by Red Hat technology experts.
    • Explore All Events
    • Tech Talks

      • Getting Gitops
      • GitHub Makeover
      • OpenTelemetry on Kubernetes
      • View All Tech Talks
    • Deep Dives

      • Quinoa: A modern Quarkus UI with no hassles
      • Event-driven autoscaling through KEDA and Knative Integration
      • View All Deep Dives
    • Red Hat Summit

      Red Hat Summit
      Explore the Red Hat Summit 2023 virtual content hub and uncover insights that can fuel your future. Get on-demand access to the keynotes, sessions, and technical presentations from Red Hat Summit 2023 that are most relevant to your career.
    • View the content hub
  • Developer Sandbox

    Developer Sandbox (free)

    • Try hands-on activities in the Developer Sandbox
      Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore the Developer Sandbox IDE

    Featured Developer Sandbox activities

    • Deploy a Java application on Kubernetes in minutes
    • Learn Kubernetes using the Developer Sandbox
    • Deploy full-stack JavaScript apps to the Developer Sandbox

    Ready to start developing apps?

    • Explore the free Developer Sandbox
  • Blog

Blog

Report from the February 2023 ISO C++ meeting (Library)

October 5, 2023
C++
Jonathan Wakely
C++ virtual meetings

    The C++ standards committee (ISO/IEC JTC1/SC22/WG21, or WG21 to its friends) met in February to approve the final set of changes to the upcoming C++23 standard. The meeting was in Issaquah, in Washington, USA, and was the second time the committee had met in person since the pandemic. Like the meeting last November, this was a "hybrid" meeting, with in-person attendance but a large number of people (including me) attending virtually via video conference.

    Now that the contents of the C++23 are finished, we're waiting for the new standard to be published sometime later this year. The committee has successfully delivered a new revision of the C++ standard on time every three years since 2011, but this one has some special significance for me because I've been chairing WG21's Library Working Group (LWG) since we finished C++20 three years ago. I'm proud to have been able to help coordinate some of the great work that has gone into the new C++ standard, especially when we suddenly had to stop holding our regular meetings in 2020 and adopt new working practices.

    There are lots of new features in the C++23 standard library, but in this post, I will show a few examples of ones I think are particularly interesting. You might notice a theme: many of the new features are building on new features of C++20. Several of the features described below are smoothing away rough edges or filling in missing pieces of the features added to C++20.

    New feature highlights

    Building on the modules support added to C++20, there is now a std module for the standard library. This allows the entire standard library to be imported by using 'import std;' -- this not only means you don't need to remember which header files to include for each component you use but importing the entire library should compile much faster than including and preprocessing individual headers.

    Working with ranges

    Building on the <ranges> library introduced in C++20, there are many other new views and new algorithms for working with ranges; for example, views::zip and views::enumerate. The zip view of those takes any number of separate views and combines them into a single view yielding elements of type tuple<T&...>, i.e., a tuple of references to the elements of the individual views. The enumerate view takes a range of elements and produces a view that yields elements of type tuple<integer-type, T> such that each element of type T from the input range is paired with its index in the range. There are several more new views that yield different permutations of ranges, such as zip_transform, adjacent, adjacent_transform, join_with, chunk, chunk_by, slide, and cartesian_product.

    New <print> header

    Building on the <format> library introduced in C++20, the new <print> header provides convenient and type-safe printing to files and iostreams. In C++20 the classic "Hello, world!" program could be written in C++ as std::cout << std::format("Hello, {}!\n", "world"); . But with C++23, you can simply write std::println("Hello, {}!", "world"), which will both format the string and write it to standard output. The std::format and std::print functions also support more types than in C++20, including ranges (such as std::map, std::vector, and views such as the result of views::zip) and thread IDs and stack traces (which are another new addition in C++23).

    Error handling

    We also added discriminated union type, std::expected<T, U>, which holds either a result value or an error value. This allows a systematic approach to error handling that combines the best aspects of error codes and exceptions. You can think of an expected<T, U> object as being similar to optional<T> except instead of being empty when the expected T value, it contains an "unexpected" value of type U. This can be an error code (like the value of errno), an std::error_code, or anything representing the error that meant a T result could not be produced.

    Here is a quick demo showing some of these new features:

    import std;
    
    std::expected<std::vector<int>, std::error_code> get_data();
    
    int main()
    {
      try
      {
        auto indexed_vals = get_data().value() | std::views::enumerate;
        std::println("{}", indexed_vals);
      }
      catch (const std::bad_expected_access<std::error_code>& e)
      {
        std::println(std::cerr, "Failed to get data: {}: {}",
                     e.error().category().name(),
                     e.error().message());
      }
    }

    This will either print the vector with the index of each value, like "[(0, v0), (1, v1), (2, v2), ...]" or, if the get_data() function failed to produce a vector, calling the value() member function will throw an exception and then an error will be printed.

     

    Last updated: October 9, 2023

    Featured Contributor Content

    • Join the Red Hat team at the Open Source in Finance Forum 2023

    • ISO C++ Jun 23 meeting trip report (core language)

    • How to install Ansible Automation Platform 2.4 on RHEL 9.1

    • I installed Podman and Podman Desktop on my Windows PC

    • Observability for Node.js applications in OpenShift

    • Getting started with Topology View in Cryostat 2.3

    Recent Articles

    • Kafka Bridge load balancing and failover using Tetrate Service Bridge

    • Getting started with MongoDB and Quarkus

    • How to deploy AngularJS apps to OpenShift

    • Getting started with tiered storage in Apache Kafka

    • Red Hat build of Keycloak provides FIPS-140-2 support

    Related Content

    Report from the virtual ISO C++ meetings in 2020 (core language)

    C++ standardization (core language) progress in 2021

    Report from the February 2019 ISO C++ meeting (Library)

    Migrating C and C++ applications from Red Hat Enterprise Linux version 7 to version 8

    The joys and perils of aliasing in C and C++, Part 2

    Info alert: Please note the content in this blog post has not been thoroughly reviewed by the Red Hat Developer editorial team. Any opinions expressed in this post are the author’s own and do not necessarily reflect the policies or positions of Red Hat.

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products
    • See all technologies

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog
    • Operators Marketplace

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Diversity, equity, and inclusion
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility