[#absl-MakeAnySpan-0a] = xref:absl.adoc[absl]::MakeAnySpan :relfileprefix: ../ :mrdocs: Constructs an `AnySpan` from a non‐view container or array. == Synopsis Declared in `<absl/types/any_span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< int& ExplicitArgumentBarrier..., typename Container, typename T = any_span_internal::ElementType<Container>> xref:absl/AnySpan.adoc[AnySpan<T>] MakeAnySpan(Container& c) requires !absl::type_traits_internal::IsView<std::remove_cv_t<Container>>::value; ---- == Return Value An `AnySpan` over the elements of `c`. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The container whose elements the span refers to. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#