[#absl-MakeConstDerefAnySpan-0c] = xref:absl.adoc[absl]::MakeConstDerefAnySpan :relfileprefix: ../ :mrdocs: Constructs a const `AnySpan` dereferencing a view container of pointers. == 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::DerefElementType<Container const>> xref:absl/AnySpan.adoc[AnySpan<T const>] MakeConstDerefAnySpan(Container const& c) requires absl::type_traits_internal::IsView<Container>::value; ---- == Return Value A read‐only `AnySpan` over the dereferenced elements of `c`. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The container of pointers whose pointees the span refers to. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#