VCCC  2024.05
VisualCamp Common C++ library
incrementable.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2023/12/25.
3 //
4 
5 #ifndef VCCC_ITERATOR_INCREMENTABLE_HPP_
6 #define VCCC_ITERATOR_INCREMENTABLE_HPP_
7 
10 
11 namespace vccc {
12 
15 
16 template<typename T>
18  : conjunction<
19  regular<T>,
20  weakly_incrementable<T>
21  > {};
22 
24 
25 } // namespace vccc
26 
27 #endif // VCCC_ITERATOR_INCREMENTABLE_HPP_
Definition: directory.h:12
Definition: conjunction.hpp:22
Definition: incrementable.hpp:21