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
3#ifndef TETL_COMPARE_DETAIL_HPP
4#define TETL_COMPARE_DETAIL_HPP
5
7
8namespace etl::detail {
9
10enum struct order_result : etl::int8_t {
11 less = -1,
12 equal = 0,
13 greater = 1
14};
15enum struct compare_result : etl::int8_t {
16 unordered = -127
17};
18
19} // namespace etl::detail
20
21#endif // TETL_COMPARE_DETAIL_HPP
TETL_BUILTIN_INT8 int8_t
Signed integer type with width of exactly 8 bits.
Definition int_t.hpp:11