Like the std::span constructor, but for (const) unsigned char member types only. Only works for (un)signed char containers.
Declared in <span.h>
template<typename V>
constexpr
decltype(UCharSpanCast(std::span{v}))
MakeUCharSpan(V const& v);
A span of const unsigned char over the same memory as v.
| Name | Description |
|---|---|
| v | The (un)signed char range to view. |