Defined in header <memory> | ||
---|---|---|
Call signature | ||
template< no-throw-input-iterator I > requires std::destructible<std::iter_value_t<I>> constexpr I destroy_n( I first, std::iter_difference_t<I> n ) noexcept; | (since C++20) |
Destroys the n
objects in the range starting at first
, equivalent to.
The function-like entities described on this page are niebloids, that is:
In practice, they may be implemented as function objects, or with special compiler extensions.
first | - | the beginning of the range of elements to destroy |
n | - | the number of elements to destroy |
The end of the range of objects that has been destroyed.
Linear in n
.
The following example demonstrates how to use ranges::destroy_n
to destroy a contiguous sequence of elements.
#include <iostream> #include <memory> #include <new> struct Tracer { int value; ~Tracer() { std::cout << value << " destructed\n"; } }; int main() { alignas(Tracer) unsigned char buffer[sizeof(Tracer) * 8]; for (int i = 0; i < 8; ++i) new(buffer + sizeof(Tracer) * i) Tracer{i}; //manually construct objects auto ptr = std::launder(reinterpret_cast<Tracer*>(buffer)); std::ranges::destroy_n(ptr, 8); }
Output:
(C++20) | destroys an object at a given address (niebloid) |
(C++20) | destroys a range of objects (niebloid) |
(C++17) | destroys a number of objects in a range (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/memory/ranges/destroy_n