VCCC  2024.05
VisualCamp Common C++ library
enable_borrowed_range.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2023/12/24.
3 //
4 
5 #ifndef VCCC_RANGES_ENABLE_BORROWED_RANGE_HPP_
6 #define VCCC_RANGES_ENABLE_BORROWED_RANGE_HPP_
7 
8 #include <type_traits>
9 
10 namespace vccc {
11 namespace ranges {
12 
15 
16 template<typename R>
17 struct enable_borrowed_range : std::false_type {};
18 
20 
21 } // namespace vccc
22 } // namespace ranges
23 
24 #endif // VCCC_RANGES_ENABLE_BORROWED_RANGE_HPP_
Definition: directory.h:12
Definition: enable_borrowed_range.hpp:17