| 107 | // template <typename TM, enable_if_t<!IsScalar<TM>(),bool> = true> |
| 108 | template <typename TM> requires(!IsScalar<TM>()) |
| 109 | inline auto Access (const TM & mat, int i, int j) |
| 110 | { |
| 111 | return mat(i,j); |
| 112 | } |
| 113 | |
| 114 | // template <typename TM, enable_if_t<IsScalar<TM>(),bool> = true> |
| 115 | template <typename TM> requires(IsScalar<TM>()) |
no outgoing calls
no test coverage detected