summaryrefslogtreecommitdiffstats
path: root/deps/include/entt/entity/ranges.hpp
blob: 98f9fffd29abaa95adb6f7661351aafc33d36300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef ENTT_ENTITY_RANGES_HPP
#define ENTT_ENTITY_RANGES_HPP

#if __has_include(<version>)
#    include <version>
#
#    if defined(__cpp_lib_ranges)
#        include <ranges>
#        include "fwd.hpp"

template<class... Args>
inline constexpr bool std::ranges::enable_borrowed_range<entt::basic_view<Args...>>{true};

template<class... Args>
inline constexpr bool std::ranges::enable_borrowed_range<entt::basic_group<Args...>>{true};

template<class... Args>
inline constexpr bool std::ranges::enable_view<entt::basic_view<Args...>>{true};

template<class... Args>
inline constexpr bool std::ranges::enable_view<entt::basic_group<Args...>>{true};

#    endif
#endif

#endif