Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
iterator_tags.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_ITERATOR_TAGS_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_ITERATOR_TAGS_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 <iterator>
12
13namespace std {
14
15/// @brief An empty tag type corresponding to an input iterator
17
18/// @brief An empty tag type corresponding to an output iterator
20
21/// @brief An empty tag type corresponding to a forward iterator
23
24/// @brief An empty tag type corresponding to a bidirectional iterator
26
27// parasoft-begin-suppress AUTOSAR-A2_7_3-a "False positive: Declaration *is* preceeded by the @brief tag."
28/// @brief An empty tag type corresponding to a random access iterator
30// parasoft-end-suppress AUTOSAR-A2_7_3-a
31
32} // namespace std
33
34#endif // INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_ITERATOR_TAGS_HPP_
An empty tag type corresponding to a bidirectional iterator.
Definition iterator_tags.hpp:25
An empty tag type corresponding to a forward iterator.
Definition iterator_tags.hpp:22
An empty tag type corresponding to an input iterator.
Definition iterator_tags.hpp:16
An empty tag type corresponding to an output iterator.
Definition iterator_tags.hpp:19
An empty tag type corresponding to a random access iterator.
Definition iterator_tags.hpp:29
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