Searched defs: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() argument37 constexpr MoveAwareView& operator=(MoveAwareView&& other) { in operator =() argument42 constexpr const int* begin() const { return &moves; } in begin()43 constexpr const int* end() const { return &moves + 1; } in end()