std::ranges::transform_view<V,F>::sentinel<Const>::sentinel
来自cppreference.com
                    
                                        
                    < cpp | ranges | transform view | sentinel
                    
                                                            
                    |   /*sentinel*/() = default;  | 
(1) | (C++20 起) | 
|   constexpr explicit /*sentinel*/( ranges::sentinel_t<Base> end );  | 
(2) | (C++20 起) | 
|   constexpr /*sentinel*/( /*sentinel*/<!Const> i )   requires Const &&  | 
(3) | (C++20 起) | 
构造哨位。
1) 默认构造函数。值初始化底层哨位。
2) 以 end 初始化底层哨位。
3) 从 /*sentinel*/<false> 转换到 /*sentinel*/<true> 。移动构造对应的成员。
参数
| end | - |   表示(可为 const 限定的) V 的末尾的哨位
 | 
| i | - | /*sentinel*/<false> | 
示例
| 本节未完成 原因:暂无示例  |