Provided by: libstdc++-13-doc_13.2.0-23ubuntu4_all bug

NAME

       std::common_with - [concept.common], concept common_with

SYNOPSIS

       #include <concepts>

Concept definition

       template<typename _Tp, typename _Up>
       concept std::common_with =  same_as<common_type_t<_Tp, _Up>, common_type_t<_Up, _Tp>>
             && requires {
               static_cast<common_type_t<_Tp, _Up>>(std::declval<_Tp>());
               static_cast<common_type_t<_Tp, _Up>>(std::declval<_Up>());
             }
             && common_reference_with<add_lvalue_reference_t<const _Tp>,
                                      add_lvalue_reference_t<const _Up>>
             && common_reference_with<add_lvalue_reference_t<common_type_t<_Tp, _Up>>,
                                      common_reference_t<
                                        add_lvalue_reference_t<const _Tp>,
                                        add_lvalue_reference_t<const _Up>>>

Detailed Description

       [concept.common], concept common_with

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                            libstdc++                      std::common_with(3cxx)