Constructs a const AnySpan dereferencing a view container of pointers.
Declared in <absl/types/any_span.h>
template<
int& ExplicitArgumentBarrier...,
typename Container,
typename T = any_span_internal::DerefElementType<Container const>>
AnySpan<T const>
MakeConstDerefAnySpan(Container const& c)
requires absl::type_traits_internal::IsView<Container>::value;
A read-only AnySpan over the dereferenced elements of c.
| Name | Description |
|---|---|
| c | The container of pointers whose pointees the span refers to. |