xtd 0.2.0
Loading...
Searching...
No Matches
greater_than_comparable.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <type_traits>
6#include <ostream>
7
9namespace xtd {
11 namespace helpers {
27 template<typename value_t>
28 concept greater_than_comparable = requires(const value_t& a, const value_t& b) {{ a > b } -> std::convertible_to<bool>;};
29 }
30}
Concept greather than comparable.
Definition greater_than_comparable.hpp:28
@ a
The A key.
Definition console_key.hpp:88
@ b
The B key.
Definition console_key.hpp:90
The xtd::helpers namespace contains helpers for xtd objects, sush as exception static class.
Definition exception_case.hpp:9
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8