35 #ifndef _BLAZE_UTIL_ALGORITHMS_DESTROY_H_ 36 #define _BLAZE_UTIL_ALGORITHMS_DESTROY_H_ 65 template<
typename ForwardIt >
66 void destroy( ForwardIt first, ForwardIt last )
68 for( ; first!=last; ++first ) {
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Headerfile for the generic destroy_at algorithm.
void destroy(ForwardIt first, ForwardIt last)
Destroys the given range of objects .
Definition: Destroy.h:66
void destroy_at(T *p) noexcept
Destroys the object at the given address.
Definition: DestroyAt.h:57