13void copy_data(T& dest,
const T& src)
noexcept(
true);
53#include <misc/gen/utils.hpp>
Creates an adapter to reverse iterate over e.g. a std::vector or std::array.
Definition misc/gen/utils.h:28
reverse_adapter(T &container)
Constructor passing a container type.
T & container
Definition misc/gen/utils.h:47
decltype(auto) end()
Required method to allow iteration. It in fact returns the rend() of the container.
decltype(auto) begin()
Required method to allow iteration. It in fact returns the rbegin() of the container.
Definition Application.h:10
void copy_data(T &dest, const T &src) noexcept(true)
Does a binary copy from source to destination data.