Constructs a mutable Span<T> from a C array.
Declared in <absl/types/span.h>
template<
int& ExplicitArgumentBarrier...,
typename T,
size_t N>
constexpr
Span<T>
MakeSpan(T(& array)[]) noexcept;
A span over all elements of array.
| Name | Description |
|---|---|
| array | The array whose elements the span refers to. |