Searched refs:MoveAwareView (Results 1 – 1 of 1) sorted by relevance
33 struct MoveAwareView : std::ranges::view_base { struct35 constexpr MoveAwareView() = default; argument36 constexpr MoveAwareView(MoveAwareView&& other) : moves(other.moves + 1) { other.moves = 1; } in MoveAwareView() function37 constexpr MoveAwareView& operator=(MoveAwareView&& other) { in operator =() argument70 MoveAwareView mv; in test()71 std::ranges::zip_view v{std::move(mv), MoveAwareView{}}; in test()