Constructs a mutable Span<T> from a [begin, end)] pointer pair.
Declared in <absl/types/span.h>
template<
int& ExplicitArgumentBarrier...,
typename T>
Span<T>
MakeSpan(
T* begin,
T* end) noexcept;
A span over the range [begin, end)].
| Name | Description |
|---|---|
| begin | Pointer to the first element. |
| end | Pointer just past the last element. |