numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::util::concepts::less_than_comparable Concept Reference

Concept of comparable types with operator<. More...

#include <num_collect/util/concepts/comparable.h>

Concept definition

template<typename T, typename U>
concept num_collect::util::concepts::less_than_comparable = requires(const T& t, const U& u) {
}
Concept of comparable types with operator<.
Definition comparable.h:33

Detailed Description

Concept of comparable types with operator<.

Template Parameters
TLeft-hand-side type.
URight-hand-side type.

Definition at line 33 of file comparable.h.