// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_CONTAINERS_EXTEND_H_ #define BASE_CONTAINERS_EXTEND_H_ #include #include #include #include #include namespace base { // Append to |dst| all elements of |src| by std::move-ing them out of |src|. // After this operation, |src| will be empty. template void Extend(std::vector& dst, std::vector&& src) { dst.insert(dst.end(), std::make_move_iterator(src.begin()), std::make_move_iterator(src.end())); src.clear(); } // Appends `range` to `dst`, copying them out of `range`. template requires std::ranges::range && std::indirectly_unary_invocable> void Extend(std::vector& dst, Range&& range, Proj proj = {}) { if constexpr (std::ranges::sized_range) { dst.reserve(dst.size() + std::ranges::size(range)); } std::ranges::transform(std::forward(range), std::back_inserter(dst), std::move(proj)); } } // namespace base #endif // BASE_CONTAINERS_EXTEND_H_