[#MakeWritableByteSpan] = MakeWritableByteSpan :mrdocs: Return a writable span of bytes viewing the same memory as the range `v`. == Synopsis Declared in `<span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename V> auto MakeWritableByteSpan(V&& v) noexcept; ---- == Return Value A writable span of bytes over the same memory as `v`. == Parameters [cols="1,4"] |=== | Name| Description | *v* | The range whose bytes are viewed. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#