Sometimes you want to take an untyped region of memory and treat it as a span (e.g. when you don't care about the values being uninitialized, and when you know the alignment and size are ok). We don't provide proper support for this right now... let's have it via an operator span<U> for memory regions.
Sometimes you want to take an untyped region of memory and treat it as a span (e.g. when you don't care about the values being uninitialized, and when you know the alignment and size are ok). We don't provide proper support for this right now... let's have it via an
operator span<U>
for memory regions.