#if defined(TETL_ENABLE_CXX_MODULES)
import etl;
#else
#endif
auto main() -> int
{
decltype(src) dest = {};
etl::copy(src.begin(), src.end(), dest.begin());
return 0;
}
#define assert(...)
Definition cassert.hpp:20
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:16
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:19
A container that encapsulates fixed size arrays.
Definition array.hpp:49
constexpr auto fill(const_reference value) -> void
Assigns the given value value to all elements in the container.
Definition array.hpp:253