| 3 | namespace nd { |
| 4 | |
| 5 | inline array data_iterator::operator*() const |
| 6 | { |
| 7 | return array(impl::std_span_array_nd(nullptr, data_, shape_, dtype_)); |
| 8 | } |
| 9 | |
| 10 | template <typename T> |
| 11 | inline array iterator::concrete_holder<T>::value() const |
nothing calls this directly
no test coverage detected