Home
last modified time | relevance | path

Searched refs:ForwardViewCommonIfConst (Results 1 – 1 of 1) sorted by relevance

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.lazy.split/
H A Dend.pass.cpp22 struct ForwardViewCommonIfConst : std::ranges::view_base { struct
24 constexpr explicit ForwardViewCommonIfConst() = default; argument
25 constexpr ForwardViewCommonIfConst(const char* ptr) : view_(ptr) {} in ForwardViewCommonIfConst() function
26 constexpr ForwardViewCommonIfConst(std::string_view v) : view_(v) {} in ForwardViewCommonIfConst() function
27 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()