[#UCharSpanCast] = UCharSpanCast :mrdocs: Convert a span to a span of `[const]unsigned char` viewing the same memory. == Synopsis Declared in `<span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, size_t N> constexpr auto UCharSpanCast(std::span<T, N> s); ---- == Return Value A span of `[const]unsigned char` over the same memory as `s`. == Parameters [cols="1,4"] |=== | Name| Description | *s* | The span to reinterpret. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#