JX Application Framework
Loading...
Searching...
No Matches
j_minmax_comparable Concept Reference

#include <JMinMax.h>

Concept definition

template<class T, class U>
concept j_minmax_comparable = std::totally_ordered_with<T, U> &&
(
(std::is_signed_v<T> && std::is_signed_v<U>) ||
(std::is_unsigned_v<T> && std::is_unsigned_v<U>)
)
Definition JMinMax.h:14

Detailed Description

Interface for JMin and JMax templates