| 918 | constexpr ArrayView<T> prefix(T* end) const; |
| 919 | #else |
| 920 | template<class U, typename std::enable_if<std::is_convertible<U, T*>::value && !std::is_convertible<U, std::size_t>::value, int>::type = 0> constexpr ArrayView<T> prefix(U end) const { |
| 921 | return ArrayView<T>(*this).prefix(end); |
| 922 | } |
| 923 | #endif |
| 924 | |
| 925 | /** @copydoc ArrayView::suffix(T*) const */ |
no test coverage detected