Searched defs:NonConstView (Results 1 – 3 of 3) sorted by relevance
60 struct NonConstView : std::ranges::view_base { struct61 explicit NonConstView(int *b, int *e) : b_(b), e_(e) {} in NonConstView() function81 auto transformed = NonConstView(a, a + 4) | std::views::transform([](int x) { return x + 42; }); in main() argument
33 struct NonConstView : std::ranges::view_base { struct
57 struct NonConstView : std::ranges::view_base { struct