xref: /freebsd/contrib/llvm-project/libcxx/include/__utility/rel_ops.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
2fe6060f1SDimitry Andric //
3fe6060f1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4fe6060f1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5fe6060f1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6fe6060f1SDimitry Andric //
7fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
8fe6060f1SDimitry Andric 
9fe6060f1SDimitry Andric #ifndef _LIBCPP___UTILITY_REL_OPS_H
10fe6060f1SDimitry Andric #define _LIBCPP___UTILITY_REL_OPS_H
11fe6060f1SDimitry Andric 
12fe6060f1SDimitry Andric #include <__config>
13fe6060f1SDimitry Andric 
14fe6060f1SDimitry Andric #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
15fe6060f1SDimitry Andric #  pragma GCC system_header
16fe6060f1SDimitry Andric #endif
17fe6060f1SDimitry Andric 
18fe6060f1SDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD
19fe6060f1SDimitry Andric 
20cb14a3feSDimitry Andric namespace rel_ops {
21fe6060f1SDimitry Andric 
22fe6060f1SDimitry Andric template <class _Tp>
23*0fca6ea1SDimitry Andric inline _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator!=(const _Tp& __x, const _Tp& __y) {
24fe6060f1SDimitry Andric   return !(__x == __y);
25fe6060f1SDimitry Andric }
26fe6060f1SDimitry Andric 
27fe6060f1SDimitry Andric template <class _Tp>
28*0fca6ea1SDimitry Andric inline _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator>(const _Tp& __x, const _Tp& __y) {
29fe6060f1SDimitry Andric   return __y < __x;
30fe6060f1SDimitry Andric }
31fe6060f1SDimitry Andric 
32fe6060f1SDimitry Andric template <class _Tp>
33*0fca6ea1SDimitry Andric inline _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator<=(const _Tp& __x, const _Tp& __y) {
34fe6060f1SDimitry Andric   return !(__y < __x);
35fe6060f1SDimitry Andric }
36fe6060f1SDimitry Andric 
37fe6060f1SDimitry Andric template <class _Tp>
38*0fca6ea1SDimitry Andric inline _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator>=(const _Tp& __x, const _Tp& __y) {
39fe6060f1SDimitry Andric   return !(__x < __y);
40fe6060f1SDimitry Andric }
41fe6060f1SDimitry Andric 
420eae32dcSDimitry Andric } // namespace rel_ops
43fe6060f1SDimitry Andric 
44fe6060f1SDimitry Andric _LIBCPP_END_NAMESPACE_STD
45fe6060f1SDimitry Andric 
46fe6060f1SDimitry Andric #endif // _LIBCPP___UTILITY_REL_OPS_H
47