std::ranges::subrange_kind
From cppreference.com
                    
                                        
                    
                    
                                                            
                    | Defined in header  <ranges> | ||
| enum class subrange_kind : bool {     unsized, | (since C++20) | |
Specifies if a std::ranges::subrange models std::ranges::sized_range or not.
| Constant | Explanation | 
| unsized | specifies that the subrangedoes not modelsized_range | 
| sized | specifies that the subrangedoes modelsized_range |