[#absl-MakeSpan-03] = xref:absl.adoc[absl]::MakeSpan :relfileprefix: ../ :mrdocs: Constructs a mutable `Span` from a non‐view container. == Synopsis Declared in `<absl/types/span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- 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 [cols="1,4"] |=== | Name| Description | *c* | The container whose data the span refers to. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#