libxr  1.0
Want to be the best embedded framework
Loading...
Searching...
No Matches
LibXR::CommonOrdered Concept Reference

具有公共类型且可比较大小的类型对 More...

#include <libxr_def.hpp>

Concept definition

template<typename LeftType, typename RightType>
concept LibXR::CommonOrdered = std::common_with<LeftType, RightType> &&
requires(const LeftType& left, const RightType& right)
{
{ left < right } -> std::convertible_to<bool>;
{ left > right } -> std::convertible_to<bool>;
}
具有公共类型且可比较大小的类型对
Definition libxr_def.hpp:49

Detailed Description

具有公共类型且可比较大小的类型对

Type pair with a common type and ordering

Definition at line 49 of file libxr_def.hpp.