Constructs a mutable Span from a view container.
Synopsis
Declared in <absl/types/span.h>
template<
int& ExplicitArgumentBarrier...,
typename C>
constexpr
decltype(absl::MakeSpan(span_internal::GetData(c),
c.size()))
MakeSpan(C& c) noexcept
requires span_internal::IsView<C>::value;
Return Value
A span over the elements of c.
Parameters
Name |
Description |
c |
The container whose data the span refers to. |
Created with MrDocs