From 8853b208aa6a1c32439ef07adc79805e2ed915ba Mon Sep 17 00:00:00 2001 From: AntoinePrv Date: Tue, 13 Jul 2021 15:39:35 -0400 Subject: [PATCH] Add rvalue qualified xstrided_view_base::storage --- include/xtensor/xstrided_view_base.hpp | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/include/xtensor/xstrided_view_base.hpp b/include/xtensor/xstrided_view_base.hpp index f830d4798..9cf82f8ba 100644 --- a/include/xtensor/xstrided_view_base.hpp +++ b/include/xtensor/xstrided_view_base.hpp @@ -166,8 +166,9 @@ namespace xt template const_reference element(It first, It last) const; - storage_type& storage() noexcept; - const storage_type& storage() const noexcept; + storage_type& storage() & noexcept; + const storage_type& storage() const & noexcept; + storage_type&& storage() && noexcept; template std::enable_if_t::value, pointer> @@ -550,7 +551,7 @@ namespace xt * Returns a reference to the buffer containing the elements of the view. */ template - inline auto xstrided_view_base::storage() noexcept -> storage_type& + inline auto xstrided_view_base::storage() & noexcept -> storage_type& { return m_storage; } @@ -559,11 +560,21 @@ namespace xt * Returns a constant reference to the buffer containing the elements of the view. */ template - inline auto xstrided_view_base::storage() const noexcept -> const storage_type& + inline auto xstrided_view_base::storage() const & noexcept -> const storage_type& { return m_storage; } + /** + * Returns a rvalue reference to the buffer containing the elements of the view. + */ + template + inline auto xstrided_view_base::storage() && noexcept -> storage_type&& + { + return std::move(m_storage); + } + + /** * Returns a pointer to the underlying array serving as element storage. * The first element of the view is at data() + data_offset().