16 #ifndef OPENKALMAN_COLLECTIONS_COLLECTION_VIEW_HPP 17 #define OPENKALMAN_COLLECTIONS_COLLECTION_VIEW_HPP 19 #ifdef __cpp_lib_ranges 33 #ifdef __cpp_lib_ranges 34 concept
collection_view = std::ranges::view<T> and uniformly_gettable<T> and std::ranges::random_access_range<T>;
36 constexpr
bool collection_view = ranges::view<T> and uniformly_gettable<T> and ranges::random_access_range<T>;
42 #endif //OPENKALMAN_COLLECTIONS_COLLECTION_VIEW_HPP Namespace for collections.
Definition: collections.hpp:27
constexpr bool collection_view
A view to a collection which is also a std::ranges:view.
Definition: collection_view.hpp:36