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

Concept of classes to compare two values. More...

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

Concept definition

template<typename C, typename T, typename U>
concept num_collect::util::concepts::comparator = requires(const C& c, const T& t, const U& u) {
}
Concept of classes to compare two values.
Definition comparator.h:34

Detailed Description

Concept of classes to compare two values.

Template Parameters
CType of class to compare two values.
TType of the first argument.
UType of the second argument.

Definition at line 34 of file comparator.h.