18 for (
typename InMat::size_type row{0};
etl::cmp_less(row, a.extent(0)); ++row) {
19 for (
typename InMat::size_type col{0};
etl::cmp_less(col, a.extent(1)); ++col) {
20 result += detail::abs_if_needed(a(row, col));
25 return static_cast<Scalar
>(
sqrt(result));
constexpr auto cmp_less(T t, U u) noexcept -> bool
Compare the values of two integers t and u. Unlike builtin comparison operators, negative signed inte...
Definition cmp_less.hpp:21