18template<
typename Input_>
19using I = std::remove_cv_t<std::remove_reference_t<Input_> >;
36template<
typename Value_,
typename Size_>
37Value_*
copy_n(
const Value_*
const input,
const Size_ n, Value_*
const output) {
38 if (input != output) {
39 std::copy_n(input, n, output);
Flexible representations for matrix data.
Definition Extractor.hpp:15
Value_ * copy_n(const Value_ *const input, const Size_ n, Value_ *const output)
Definition copy.hpp:37