VCCC  2024.05
VisualCamp Common C++ library
strict_weak_order.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2023/12/27.
3 //
4 
5 #ifndef VCCC_CONCEPTS_STRICT_WEAK_ORDER_HPP
6 #define VCCC_CONCEPTS_STRICT_WEAK_ORDER_HPP
7 
9 
10 namespace vccc {
13 
21 template<typename R, typename T, typename U>
22 struct strict_weak_order : relation<R, T, U> {};
23 
25 
26 } // namespace vccc
27 
28 #endif // VCCC_CONCEPTS_STRICT_WEAK_ORDER_HPP
Definition: directory.h:12
specifies that a callable type is a binary relation
Definition: relation.hpp:30
specifies that a relation imposes a strict weak ordering
Definition: strict_weak_order.hpp:22