Searched refs:ForwardViewCommonIfConst (Results 1 – 1 of 1) sorted by relevance
22 struct ForwardViewCommonIfConst : std::ranges::view_base { struct24 constexpr explicit ForwardViewCommonIfConst() = default; argument25 constexpr ForwardViewCommonIfConst(const char* ptr) : view_(ptr) {} in ForwardViewCommonIfConst() function26 constexpr ForwardViewCommonIfConst(std::string_view v) : view_(v) {} in ForwardViewCommonIfConst() function27 constexpr ForwardViewCommonIfConst(ForwardViewCommonIfConst&&) = default;28 constexpr ForwardViewCommonIfConst& operator=(ForwardViewCommonIfConst&&) = default;29 constexpr ForwardViewCommonIfConst(const ForwardViewCommonIfConst&) = default;30 constexpr ForwardViewCommonIfConst& operator=(const ForwardViewCommonIfConst&) = default;112 using V = ForwardViewCommonIfConst; in test()