Lines Matching refs:view
25 concept CanBePiped = requires (View&& view, T&& t) {
26 { std::forward<View>(view) | std::forward<T>(t) };
35 CommonView view(buf, buf + 3); in test() local
36 std::same_as<CommonView> auto result = std::views::common(view); in test()
51 NonCommonView view(buf, buf + 3); in test() local
52 std::same_as<std::ranges::common_view<NonCommonView>> auto result = std::views::common(view); in test()
63 SomeView view(buf, buf + 3); in test() local
64 std::same_as<std::ranges::common_view<SomeView>> auto result = view | std::views::common; in test()
71 SomeView view(buf, buf + 3); in test() local
75 std::same_as<Result> auto result = partial(view); in test()
82 SomeView view(buf, buf + 3); in test() local
86 std::same_as<Result> auto result = partial(view); in test()