Path: blob/main/contrib/llvm-project/libcxx/include/__concepts/common_with.h
35262 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef _LIBCPP___CONCEPTS_COMMON_WITH_H9#define _LIBCPP___CONCEPTS_COMMON_WITH_H1011#include <__concepts/common_reference_with.h>12#include <__concepts/same_as.h>13#include <__config>14#include <__type_traits/add_lvalue_reference.h>15#include <__type_traits/common_reference.h>16#include <__type_traits/common_type.h>17#include <__utility/declval.h>1819#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)20# pragma GCC system_header21#endif2223_LIBCPP_BEGIN_NAMESPACE_STD2425#if _LIBCPP_STD_VER >= 202627// [concept.common]2829// clang-format off30template <class _Tp, class _Up>31concept common_with =32same_as<common_type_t<_Tp, _Up>, common_type_t<_Up, _Tp>> &&33requires {34static_cast<common_type_t<_Tp, _Up>>(std::declval<_Tp>());35static_cast<common_type_t<_Tp, _Up>>(std::declval<_Up>());36} &&37common_reference_with<38add_lvalue_reference_t<const _Tp>,39add_lvalue_reference_t<const _Up>> &&40common_reference_with<41add_lvalue_reference_t<common_type_t<_Tp, _Up>>,42common_reference_t<43add_lvalue_reference_t<const _Tp>,44add_lvalue_reference_t<const _Up>>>;45// clang-format on4647#endif // _LIBCPP_STD_VER >= 204849_LIBCPP_END_NAMESPACE_STD5051#endif // _LIBCPP___CONCEPTS_COMMON_WITH_H525354