Lines Matching refs:view
26 concept CanBePiped = requires (View&& view, T&& t) {
27 { std::forward<View>(view) | std::forward<T>(t) };
59 SomeView view(input); in test() local
62 std::same_as<Result> decltype(auto) result = std::views::lazy_split(view, sep); in test()
69 SomeView view(input); in test() local
72 std::same_as<Result> decltype(auto) result = std::views::lazy_split(sep)(view); in test()
79 SomeView view(input); in test() local
82 std::same_as<Result> decltype(auto) result = view | std::views::lazy_split(sep); in test()
89 SomeView view(input); in test() local
94 std::same_as<Result> decltype(auto) result = partial(view); in test()
101 SomeView view(input); in test() local
106 std::same_as<Result> decltype(auto) result = partial(view); in test()