Searched refs:ContiguousCommonView (Results 1 – 4 of 4) sorted by relevance
28 std::ranges::zip_view v{ContiguousCommonView{buffer1}, ContiguousCommonView{buffer2}}; in testConceptPair()55 std::ranges::zip_view v{SizedRandomAccessView{buffer1}, ContiguousCommonView{buffer2}}; in testConceptPair()169 std::ranges::zip_view v{ContiguousCommonView{buffer1}, ContiguousCommonView{buffer2}, in testConceptTuple()170 ContiguousCommonView{buffer3}}; in testConceptTuple()199 std::ranges::zip_view v{SizedRandomAccessView{buffer1}, ContiguousCommonView{buffer2}, in testConceptTuple()200 ContiguousCommonView{buffer3}}; in testConceptTuple()
89 constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2); in test()
289 using ContiguousCommonView = BasicView<int*>; variable290 static_assert(std::ranges::contiguous_range<ContiguousCommonView>);291 static_assert(std::ranges::common_range<ContiguousCommonView>);292 static_assert(std::ranges::sized_range<ContiguousCommonView>);
36 std::ranges::zip_view v(ContiguousCommonView{buffer}, ContiguousCommonView{buffer}); in test()