[#MakeWritableUCharSpan] = MakeWritableUCharSpan :mrdocs: Like MakeUCharSpan, but returns a writable span of `unsigned char`. == Synopsis Declared in `<span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename V> constexpr decltype(UCharSpanCast(std::span{std::forward<V>(v)})) MakeWritableUCharSpan(V&& v); ---- == Return Value A writable span of `unsigned char` over the same memory as `v`. == Parameters [cols="1,4"] |=== | Name| Description | *v* | The (un)signed char range to view. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#