//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. // //===----------------------------------------------------------------------===// #ifndef _LIBCUDACXX___CONCEPTS_CONSTRUCTIBLE_H #define _LIBCUDACXX___CONCEPTS_CONSTRUCTIBLE_H #ifndef __cuda_std__ #include <__config> #endif //__cuda_std__ #include "../__concepts/__concept_macros.h" #include "../__concepts/convertible_to.h" #include "../__concepts/destructible.h" #include "../__type_traits/add_lvalue_reference.h" #include "../__type_traits/is_constructible.h" #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header _LIBCUDACXX_BEGIN_NAMESPACE_STD #if _LIBCUDACXX_STD_VER > 17 // [concept.constructible] template concept constructible_from = destructible<_Tp> && is_constructible_v<_Tp, _Args...>; // [concept.default.init] template concept __default_initializable = requires { ::new _Tp; }; template concept default_initializable = constructible_from<_Tp> && requires { _Tp{}; } && __default_initializable<_Tp>; // [concept.moveconstructible] template concept move_constructible = constructible_from<_Tp, _Tp> && convertible_to<_Tp, _Tp>; // [concept.copyconstructible] template concept copy_constructible = move_constructible<_Tp> && constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp> && constructible_from<_Tp, const _Tp&> && convertible_to && constructible_from<_Tp, const _Tp> && convertible_to; #elif _LIBCUDACXX_STD_VER > 11 template _LIBCUDACXX_CONCEPT_FRAGMENT( __constructible_from_, requires()( requires(destructible<_Tp>), requires(_LIBCUDACXX_TRAIT(is_constructible, _Tp, _Args...)) )); template _LIBCUDACXX_CONCEPT constructible_from = _LIBCUDACXX_FRAGMENT(__constructible_from_, _Tp, _Args...); template _LIBCUDACXX_CONCEPT_FRAGMENT( __default_initializable_, requires()( (::new _Tp) )); template _LIBCUDACXX_CONCEPT __default_initializable = _LIBCUDACXX_FRAGMENT(__default_initializable_, _Tp); template _LIBCUDACXX_CONCEPT_FRAGMENT( _Default_initializable_, requires(_Tp = _Tp{}) ( requires(constructible_from<_Tp>), requires(__default_initializable<_Tp>) )); template _LIBCUDACXX_CONCEPT default_initializable = _LIBCUDACXX_FRAGMENT(_Default_initializable_, _Tp); // [concept.moveconstructible] template _LIBCUDACXX_CONCEPT_FRAGMENT( __move_constructible_, requires()( requires(constructible_from<_Tp, _Tp>), requires(convertible_to<_Tp, _Tp>) )); template _LIBCUDACXX_CONCEPT move_constructible = _LIBCUDACXX_FRAGMENT(__move_constructible_, _Tp); // [concept.copyconstructible] template _LIBCUDACXX_CONCEPT_FRAGMENT( __copy_constructible_, requires()( requires(move_constructible<_Tp>), requires(constructible_from<_Tp, add_lvalue_reference_t<_Tp>> && convertible_to, _Tp>), requires(constructible_from<_Tp, const add_lvalue_reference_t<_Tp>> && convertible_to, _Tp>), requires(constructible_from<_Tp, const _Tp> && convertible_to) )); template _LIBCUDACXX_CONCEPT copy_constructible = _LIBCUDACXX_FRAGMENT(__copy_constructible_, _Tp); #endif // _LIBCUDACXX_STD_VER > 11 _LIBCUDACXX_END_NAMESPACE_STD #endif // _LIBCUDACXX___CONCEPTS_CONSTRUCTIBLE_H