Lines Matching refs:common
30 std::ranges::common_view<SizedRandomAccessView> common(view); in test() local
31 …std::same_as<RandomAccessIter> auto end = common.end(); // Note this should NOT be the sentinel ty… in test()
38 std::ranges::common_view<SizedRandomAccessView> const common(view); in test() local
39 …std::same_as<RandomAccessIter> auto end = common.end(); // Note this should NOT be the sentinel ty… in test()
58 std::ranges::common_view<SizedForwardView> common(view); in main() local
59 std::same_as<CommonForwardIter> auto end = common.end(); in main()
64 std::ranges::common_view<CopyableView> common(view); in main() local
65 std::same_as<CommonIntIter> auto end = common.end(); in main()
72 std::ranges::common_view<SizedForwardView> const common(view); in main() local
73 std::same_as<CommonForwardIter> auto end = common.end(); in main()
78 std::ranges::common_view<CopyableView> const common(view); in main() local
79 std::same_as<CommonIntIter> auto end = common.end(); in main()