tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
detail.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2021 Tobias Hienzsch
3
4#ifndef TETL_COMPARE_DETAIL_HPP
5#define TETL_COMPARE_DETAIL_HPP
6
7#include <etl/_cstdint/int_t.hpp>
8
9namespace etl::detail {
10
11enum struct order_result : etl::int8_t {
12 less = -1,
13 equal = 0,
14 greater = 1
15};
16enum struct compare_result : etl::int8_t {
17 unordered = -127
18};
19
20} // namespace etl::detail
21
22#endif // TETL_COMPARE_DETAIL_HPP
Definition adjacent_find.hpp:9