Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
is_rvalue_reference.hpp
Go to the documentation of this file.
1// Copyright 2024, Toyota Motor Corporation
2//
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5#ifndef INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_IS_RVALUE_REFERENCE_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_IS_RVALUE_REFERENCE_HPP_
7
8// parasoft-begin-suppress CERT_CPP-DCL58-a-2 "Part of a standard library implementation"
9// parasoft-begin-suppress AUTOSAR-A17_6_1-a-2 "Part of a standard library implementation"
10
11// IWYU pragma: private, include <type_traits>
12// IWYU pragma: friend "stdlib_detail/.*"
13
14#include "stdlib/include/stdlib_detail/integral_constant.hpp"
15
16namespace std {
17/// @brief Check if the supplied template argument is an rvalue reference or
18/// not. The value is @c true if so, @c false otherwise
19/// @tparam T The type to check
20template <typename T>
21extern constexpr bool is_rvalue_reference_v = false;
22
23/// @brief Check if the supplied template argument is an rvalue reference or
24/// not. The value is @c true if so, @c false otherwise
25/// @tparam T The type to check
26template <typename T>
27extern constexpr bool is_rvalue_reference_v<T&&> = true;
28
29/// @brief Check if the supplied template argument is an rvalue reference or
30/// not. The @c value member is @c true if so, @c false otherwise
31/// @tparam T The type to check
32template <typename T>
34} // namespace std
35
36#endif // INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_IS_RVALUE_REFERENCE_HPP_
Check if the supplied template argument is an rvalue reference or not. The value member is true if so...
Definition is_rvalue_reference.hpp:33
constexpr bool is_rvalue_reference_v< T && >
Check if the supplied template argument is an rvalue reference or not. The value is true if so,...
constexpr bool is_rvalue_reference_v
Check if the supplied template argument is an rvalue reference or not. The value is true if so,...
constexpr auto operator()(::arene::base::result< void, E > const &value) const noexcept(noexcept(hash< E >{}(std::declval< E const & >()))) -> std::size_t
Calculate the hash of a result.
Definition result.hpp:1827