Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
is_final.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_FINAL_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_IS_FINAL_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 Type trait to check if a type is a final class. @c true if it is, @c false otherwise
18/// @tparam Type The type to check
19template <typename Type>
20extern constexpr bool is_final_v = __is_final(Type);
21
22/// @brief Type trait to check if a type is a final class. Derives from @c std::true_type if it is, @c std::false_type
23/// otherwise
24/// @tparam Type The type to check
25template <typename Type>
27
28} // namespace std
29
30#endif // INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_IS_FINAL_HPP_
Type trait to check if a type is a final class. Derives from std::true_type if it is,...
Definition is_final.hpp:26
constexpr bool is_final_v
Type trait to check if a type is a final class. true if it is, false otherwise.
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