Searched refs:MoveAwareView (Results 1 – 1 of 1) sorted by relevance
32 struct MoveAwareView : std::ranges::view_base { struct34 constexpr MoveAwareView() = default; argument35 constexpr MoveAwareView(MoveAwareView&& other) : moves(other.moves + 1) { other.moves = 1; } in MoveAwareView() argument36 constexpr MoveAwareView& operator=(MoveAwareView&& other) { in operator =() argument69 MoveAwareView mv; in test()70 std::ranges::zip_view v{std::move(mv), MoveAwareView{}}; in test()