#undef NDEBUG
auto main() -> int
{
decltype(src) dest = {};
etl::copy(src.begin(), src.end(), dest.begin());
return 0;
}
#define assert(...)
Definition cassert.hpp:19
constexpr auto all_of(InputIt first, InputIt last, Predicate p) -> bool
Checks if unary predicate p returns true for all elements in the range [first, last).
Definition all_of.hpp:15
constexpr auto copy(InputIt first, InputIt last, OutputIt destination) -> OutputIt
Copies the elements in the range, defined by [first, last), to another range beginning at destination...
Definition copy.hpp:18
A container that encapsulates fixed size arrays.
Definition array.hpp:48
constexpr auto fill(const_reference value) -> void
Assigns the given value value to all elements in the container.
Definition array.hpp:207