| 539 | ArrayView<T> prefix(T* end); |
| 540 | #else |
| 541 | template<class U, typename std::enable_if<std::is_convertible<U, T*>::value && !std::is_convertible<U, std::size_t>::value, int>::type = 0> ArrayView<T> prefix(U end) { |
| 542 | return ArrayView<T>(*this).prefix(end); |
| 543 | } |
| 544 | #endif |
| 545 | /** @overload */ |
| 546 | #ifdef DOXYGEN_GENERATING_OUTPUT |