| 35 | int len; |
| 36 | |
| 37 | constexpr ArrayRef(decltype(nullptr) = nullptr) : data(nullptr), len(0) {} |
| 38 | |
| 39 | template<int N> |
| 40 | constexpr ArrayRef(const T (&array)[N]) : data(array), len(N) |
nothing calls this directly
no outgoing calls
no test coverage detected