make_array_view overloads
Declared in <mrdocs/ADT/ArrayView.hpp>
Create an ArrayView from a C-style array.
template<
class T,
std::size_t N>
constexpr
ArrayView<T>
make_array_view(T const(& arr)[]) noexcept;
» more...
Create an ArrayView from a pointer and count.
template<class T>
constexpr
ArrayView<T>
make_array_view(
T const* data,
std::size_t count) noexcept;
» more...
| Name | Description |
|---|---|
| arr | Array to view. |
| data | Pointer to the first element. |
| count | Number of elements. |