xtd
0.2.0
Loading...
Searching...
No Matches
xtd.core
include
xtd
comparable.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
greater_than_comparable.hpp
"
6
#include "
less_than_comparable.hpp
"
7
9
namespace
xtd
{
10
// Since Doxygen does not work properly with the C++20 concept, the documentation for this concept is declared in xtd/comparable_.hpp
11
template
<
typename
value_t>
12
concept
comparable
=
13
xtd::less_than_comparable<value_t>
&&
14
xtd::greater_than_comparable<value_t>
;
15
}
xtd::comparable
Definition
comparable.hpp:12
xtd::greater_than_comparable
Definition
greater_than_comparable.hpp:13
xtd::less_than_comparable
Definition
less_than_comparable.hpp:13
greater_than_comparable.hpp
Contains xtd::helpers::greater_than_comparable concept.
less_than_comparable.hpp
Contains xtd::helpers::less_than_comparable concept.
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
Generated on
for xtd by
Gammasoft
. All rights reserved.