Create an ArrayView from a pointer and count.
Declared in <mrdocs/ADT/ArrayView.hpp>
template<class T>
constexpr
ArrayView<T>
make_array_view(
T const* data,
std::size_t count) noexcept;
View over the provided range.
| Name | Description |
|---|---|
| data | Pointer to the first element. |
| count | Number of elements. |